KBCsv icon indicating copy to clipboard operation
KBCsv copied to clipboard

KBCsv is an efficient, easy to use .NET parsing and writing library for the CSV (comma-separated values) format.

Results 6 KBCsv issues
Sort by recently updated
recently updated
newest added

This implements support for escaping the delimiter character with a user definable character and so allow support for reading in csv that use \" rather than "".

Hello, I am bit surprised that a csv file containing several lines but one line with an extra column is read succesfully without raising any exception? E.g. column1;column2 data11;data12 data21;data22...

Escaping the delimiter character is supported by doubling, e.g. "some ""quoted"" value", however many sources of CSV files take a different approach and would instead have that as "some \"quoted\"...

Hi, Thanks for the library. I am looking at parsing information from a csv file with variable column and rows like the attached file. I would like to parse the...

It probably makes sense to convert the perf test project over to use BenchmarkDotNet. Ideally, it would run as .NET core, but I'm not sure BenchmarkDotNet supports that...

There are some unexpected behaviors when setting CsvWriter.NewLine to something "crazy". While this value is (obviously) meant to be either \r\n or \n to support different OS new line conventions,...