csv-parser icon indicating copy to clipboard operation
csv-parser copied to clipboard

A CSV Parser in C++ without any bells and whistles

Results 3 csv-parser issues
Sort by recently updated
recently updated
newest added

I would like to point out that an identifier like “[`__CSV_PARSER_H__`](https://github.com/psibi/csv-parser/blob/22fd59ee4589d596bb8c9ad8a6d2e2aa47ea5bf5/csv_parser.hpp#L21 "Update candidate")” [does eventually not fit](https://www.securecoding.cert.org/confluence/display/cplusplus/DCL51-CPP.+Do+not+declare+or+define+a+reserved+identifier#DCL51-CPP.Donotdeclareordefineareservedidentifier-NoncompliantCodeExample%28HeaderGuard%29 "Do not declare an identifier which is reserved for the compiler implementation.") to...

You are just using a tokenized approach to split the line at commas and return the fields back and not follow the standards of CSV specified in the RFC -...

When using the reverse iterator on the last column, we must build the string from back to front to avoid reversed output.