Whilst parsing a CSV with a string value that contains both a quoted string and newlines, the parser will fail on any preceding newline following the quoted string treating the new line as a new record. Ie
1,"My string value container a \"quoted\" string
and a line break"
In this example, the parser will fail and treat "and a line break" as a new record, rather than a continuation of the entire string value.
Whilst parsing a CSV with a string value that contains both a quoted string and newlines, the parser will fail on any preceding newline following the quoted string treating the new line as a new record. Ie
In this example, the parser will fail and treat "and a line break" as a new record, rather than a continuation of the entire string value.