Re: Export Data and Decimal Separator
- To: mathgroup at smc.vnet.net
- Subject: [mg125510] Re: Export Data and Decimal Separator
- From: Murta <rodrigomurtax at gmail.com>
- Date: Fri, 16 Mar 2012 06:33:20 -0500 (EST)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
- References: <jjrvbg$9h3$1@smc.vnet.net>
Hi Bill, tks for your reply. I need comma for number decimal separator(10,1 instead of 10.1), your sugestion is for field separator. For Import command it works nice. Some idea? On Mar 15, 2:40 am, Bill Rowe <readn... at sbcglobal.net> wrote: > On 3/14/12 at 12:36 AM, rodrigomur... at gmail.com (Murta) wrote: > > >I would like to know how could I export some data using comma as > >decimal separator. > >I tried this: data={{1.3,2.3},{3.2,4.3}} Export["file.txt", data, > >"TSV", {NumberPoint -> ","}] > >But didn't worked. Some idea? > > "TSV" = tab separated values > "CSV" = comma separated values > > Try that instead. That is > > Export["file.txt", data, "CSV"]