DelimiterSeparatedTextParser icon indicating copy to clipboard operation
DelimiterSeparatedTextParser copied to clipboard

Handle quotes

Open dfederm opened this issue 6 years ago • 0 comments

Reference: https://en.wikipedia.org/wiki/Comma-separated_values#Basic_rules

Examples to handle:

# All fields with quotes
"1997","Ford","E350"

# Some fields with quotes
1997,Ford,E350,"Super, luxurious truck"

# Embedded quotes escaped with double-double-quotes
1997,Ford,E350,"Super, ""luxurious"" truck"

# Embedded line breaks
1997,Ford,E350,"Go get one now
they are going fast"

dfederm avatar Jul 14 '18 16:07 dfederm