dennischen / daily-money

a daily expense tracking android app
64 stars 53 forks source link

CSV export (from Facebook Παύλος Γκέσος) #13

Open LancelotLiu opened 11 years ago

LancelotLiu commented 11 years ago

https://www.facebook.com/permalink.php?story_fbid=407394159338374&id=100393240038469&notif_t=wall

In my Country, "." from "15.35" is the ",". So, when I write 15.35, remains 15 and 0.35 truncated.

to accept the 15.35, I must write the number to calculator. Calculator saves it like 15,35 so it is accepted as number.

When export to CSV, instead of #15.35#, it exports #"15,35"# which is wrong and many spreadsheets doesn't recognize it. I must use regular expression replacement to fix the output CSV.