Appendium / flatpack

CSV/Tab Delimited and Fixed Length Parser and Writer
http://flatpack.sf.net
Apache License 2.0
57 stars 20 forks source link

Delimiter Writer does not handle a field ending with new line #27

Closed benoitx closed 8 years ago

benoitx commented 8 years ago

Delimiter does not handle a field ending with new line:

Assume a Writer with " as separator and CSV format col1=value1 col2=value2 + NEW LINE col3=value3

Expected: col1,col2 value1,"value2 ",value3

but we get col1,col2,col3 value1,value2,value3