ben-strasser / fast-cpp-csv-parser

fast-cpp-csv-parser
BSD 3-Clause "New" or "Revised" License
2.11k stars 440 forks source link

"Too many columns" error bug #42

Closed Sultron closed 7 years ago

Sultron commented 7 years ago

I get this error when there is a comma enclosed with quotes. Is there a way to ignore commas inside quotes?

ben-strasser commented 7 years ago

Hi,

CSVReader<4, trim_chars<' '>, double_quote_escape<',','\"'> > reads 4 columns from a normal CSV file with string escaping enabled.

Best Regards Ben Strasser