Newline handling #397
-
I have this slightly cursed CSV which I've minimized to:
Based on the other records, I'd expect this to be a single record with two columns, the second of which containing three lines. But |
Beta Was this translation helpful? Give feedback.
Answered by
BurntSushi
May 24, 2025
Replies: 1 comment 3 replies
-
Please provide an MRE (minimal reproducible example). |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
That sort of escaping is non-standard. You need to opt into it. It's unclear why you aren't using
ReaderBuilder::escape
.This why MREs are important when asking questions. I couldn't tell whether you were correctly setting the escape option or not.