joelverhagen / NCsvPerf

A test bench for various .NET CSV parsing libraries
https://www.joelverhagen.com/blog/2020/12/fastest-net-csv-parsers
MIT License
69 stars 14 forks source link

Add a HomeGrown using Regex for the Split #47

Closed DiogenesBR closed 1 year ago

DiogenesBR commented 2 years ago

Using regex could solve the escaped comma problem in a simple way

Also for tables that have dinamic number of columns a array is a simple and easy implementation

Something like that https://stackoverflow.com/a/39939559