From mboxrd@z Thu Jan 1 00:00:00 1970 From: Uwe Brauer Subject: Re: extract a region from a table and export it Date: Fri, 17 Jun 2016 08:59:24 +0000 Message-ID: <87twgsyyvn.fsf@mat.ucm.es> References: <87oa74vyma.fsf@mat.ucm.es> <87d1nkvuat.fsf@mat.ucm.es> <87oa733g28.fsf@gmx.us> <87twgt2jvb.fsf@mat.ucm.es> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:52557) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bDpco-0003cZ-S1 for emacs-orgmode@gnu.org; Fri, 17 Jun 2016 04:59:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bDpck-0007V5-Rv for emacs-orgmode@gnu.org; Fri, 17 Jun 2016 04:59:38 -0400 Received: from plane.gmane.org ([80.91.229.3]:37796) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bDpck-0007Uz-LT for emacs-orgmode@gnu.org; Fri, 17 Jun 2016 04:59:34 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1bDpci-0004ts-RW for emacs-orgmode@gnu.org; Fri, 17 Jun 2016 10:59:32 +0200 Received: from gilgamesch.quim.ucm.es ([147.96.12.99]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 17 Jun 2016 10:59:32 +0200 Received: from oub by gilgamesch.quim.ucm.es with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 17 Jun 2016 10:59:32 +0200 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: emacs-orgmode@gnu.org > #+BEGIN_SRC emacs-lisp :var data=example-table[,0] > (mapcar 'list data) > #+END_SRC > #+RESULTS: > | 1 | > | 2 | > | 3 | > | 4 | thanks that worked great!