ben-strasser/fast-cpp-csv-parser

A new policy delimiter would be helpful

Closed this issue · 2 comments

Usually a bunch of text delimited files are using a tab or semicolon as the delimiter. It is possible to define another delimiter for the CsvReader<delim_chars<'\t'>>?

eivan commented

Hi, what about no_quote_escape?

io::CSVReader<7, io::trim_chars<' ', '\t'>, io::no_quote_escape<';'>> asd;

I close this, as I assume that @eivan answered the question. If his answer does not help, then please reopen. :)

@evian Thanks for answering the question!