42BV / CSVeed

Light-weight, easy-to-use Java-based CSV utility
Apache License 2.0
100 stars 22 forks source link

Trim Spacing on CSV Writer logic #61

Open hazendaz opened 9 years ago

hazendaz commented 9 years ago

The CSV writer logic is adding excess spacing. This does cause issues with some use cases plus bloats the output.

Example.

"123" , "123" , "123"

should be

"123","123","123"

I don't see that this is configurable currently. I am sure there is a good reason for this logic so it would be nice to have it configurable.