In unix-like systems, if the last cell gets escaped, the final " character will be put after the 0x0d (carriage return) character. Thus the <CR><LF> sequence will become <CR>"<LF>.
What to do:
- Maybe put a simple warning into the doc;
- or write a warning to stderr;
- or equip
csvconv with transformation capability;
- or automatically detect newline type.
Note, I expect similar problem with input files with unix-style line endings running on DOS-like systems.
In unix-like systems, if the last cell gets escaped, the final
"character will be put after the0x0d(carriage return) character. Thus the<CR><LF>sequence will become<CR>"<LF>.What to do:
csvconvwith transformation capability;Note, I expect similar problem with input files with unix-style line endings running on DOS-like systems.