CsvReader icon indicating copy to clipboard operation
CsvReader copied to clipboard

Extended version of Sebastian Lorien's fast CSV Reader

Results 44 CsvReader issues
Sort by recently updated
recently updated
newest added

Looking into https://github.com/sqlcollaborative/dbatools/issues/6899 it seems that CsvReader.HandleParseError is not allowing the parsing to continue when the DefaultParseErrorAction is ParseErrorAction.RaiseEvent. Instead, an exception is thrown when the caller had intended to...

Hi, I have a csv file with duplicated column names. When I try to read the csv the following exception is thrown "System.ArgumentException : An item with the same key...

enhancement

Using Visual Studio 2019. build engine 14.0.25420.1 from command prompt at the CsvReader-master folder (freshly unzipped from github archive) Typing build I get back: Checking Paket version (downloading latest stable)......

please could you include support for custom line break characters whilst reading the csv files. My data supplier sends the files with a 0x0c5 'Å' character as the line break...

Hi, when attempting to install then I got the following the error message. note: we have powershell 5.1 on win10 Install-Package LumenWorksCsvReader -Version 4.0.0 Install-Package : A parameter cannot be...

Is it possible to allow special character in column header, i.e. #MyHeader is not a valid column header, how to make it valid column header.

Currently, CsvReader only trims spaces and tabs when given trimmingOptions. It does not trim any of the new line characters. These are white space characters and should be trimmed.

Hi... [Any plans on supporting Annotated CSV ?](https://v2.docs.influxdata.com/v2.0/reference/syntax/annotated-csv/extended/) Something like this : ```csv m|measurement,location|tag|Hong Kong,temp|double,pm|long|0,time|dateTime:RFC3339 weather,San Francisco,51.9,38,2020-01-01T00:00:00Z weather,New York,18.2,,2020-01-01T00:00:00Z weather,,53.6,171,2020-01-01T00:00:00Z ```

If you attempt to read a file containing the following: ``` North,"South" East,West ``` using the code: ``` var csvReader = new CsvReader(new StreamReader(), hasHeaders: false) { SupportsMultiline = false,...

Hi I am new to LumenWorks, my apologies if I have missed something in the documentation. I have a CSV file with 200 off columns. Typically there would be close...