ben-strasser / fast-cpp-csv-parser

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

A new policy delimiter would be helpful #95

Closed gisfromscratch closed 4 years ago

gisfromscratch commented 4 years ago

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 4 years ago

Hi, what about no_quote_escape?

io::CSVReader<7, io::trim_chars<' ', '\t'>, io::no_quote_escape<';'>> asd;
ben-strasser commented 4 years ago

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!