vincentlaucsb / csv-parser

A high-performance, fully-featured CSV parser and serializer for modern C++.
MIT License
901 stars 150 forks source link

Fix for failing to parse leading and trailing escaped quotes #158

Closed rpadrela closed 3 years ago

rpadrela commented 3 years ago

Asking the writer to write \"1234\" results in \"\"\"1234\"\"\" being written. The Parser was unable to parse that result.

vincentlaucsb commented 3 years ago

@rpadrela I have to say this is a very high quality PR. Thank you for your fine detective work and for contributing additional unit tests.