newtonandebe / daily-money

Automatically exported from code.google.com/p/daily-money
0 stars 0 forks source link

Inefficient CSV-Format #101

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Whe using the CSV-Export a ";" should be used instead of a "," as a delimiter. 
The actual solution isn't very nice, the "value" is surrounded by double-quotes 
(whats necessary in this case). Later it isn't nice to work with this file, 
because there are programs who don't bundel content who is in double-quotes.
If a ";" would be used as a delimiter this problem wouldn't appear - an easy 
solution. The double-quotes around "value" wouldn't be necessary anymore, too.

Example.
Old Version:
1,C-AccountA,B-Lunch,2014-05-18,"37,22",Sandwich,0
New version:
1;C-AccountA;B-Lunch;2014-05-18;37,22;Sandwich;0

Original issue reported on code.google.com by BlueRay...@gmail.com on 18 May 2014 at 3:59