Why fields containing line breaks should be enclosed in double-quote
Answers
Answered by
0
The following example represents 2 "lines" but 1 record:
"1","b CRLF
zz","ccc" CRLF
"2","ddd", "eee" CRLF
This is not currently supported and causes issue with the StartRecords.
In the example above:
zz will be handled as a value of column 1 (probably the identifier)
When searching for its extension records, we will advance the iterator in the extension to zz.
When reading the next line (2), no extension records will be found
Similar questions