Here is my issue:
I want to export to csv file some data:
Export["C:\\Documents and Settings\\commatest.csv", \
datafile, "Table", {"FieldSeparators" -> ";", "NumberPoint" -> ","}]
The output is something like this (When i open it with notepad):
0;0;0;-0.013497386587717805;0.0019942835592972347
I want the NumberPoint to be "," instead of "." in order to have the output:
0;0;0;-0,013497386587717805;0,0019942835592972347

String[]andStringReplace[]. Not good for big data, though. – mikuszefski Feb 13 '15 at 14:11Numberform[datafile, "NumberPoint" -> ","]– george2079 Feb 13 '15 at 14:14NumberForm[{{1.3 2.54 4 23 5.323 0.0024} {23.4 23 1.54434 121.324}} "NumberPoint" -> " ]
– kevin Feb 13 '15 at 14:51