csv icon indicating copy to clipboard operation
csv copied to clipboard

A dart csv to list codec / converter

Results 21 csv issues
Sort by recently updated
recently updated
newest added

Far too many documents use the system eol encoding. It shouldn't be a problem to accept both.

enhancement

Generated csv is not recognized as csv mime type

Is there a way to specify the delimiter for decimal number? for example: 1.23 or 1,23 Thanks

feature request

I have a csv on this format with 28 lines: ``` id,name,image familia,Família,familia.jpg minhafamilia,Minha Família,minha-familia.jpg escola,Escola,escola.jpg sentimentos,Sentimentos,sentimentos.jpg ``` On android it creates a list of 28 itens, each one with...

bug

Csv has an optional parameter at the header line. For example ```csv "sep=;" a;b; 1;2; 3;4; ``` It is a csv which represents: | a | b | | ---...

[DocumentManager] The view service did terminate with error: Error Domain=_UIViewServiceErrorDomain Code=1 "(null)" UserInfo={Terminated=disconnect method} I just use this final input = new File('a/csv/file.txt').openRead(); final fields = await input.transform(utf8.decoder).transform(new CsvToListConverter()).toList();

I haven't found an option to set the escape character, is there any option planned for this ? I'm trying to convert my apache CSV code, which supports a few...

feature request

Hi, Thank you for your hardword to make a great lib. Currently, I found an issue with following csv content: ``` "A B", "C, D" ``` I think the result...

bug

The current API of accesing fields values is: ``` List rows = const CsvToListConverter( eol: '\n', shouldParseNumbers: false, ).convert(fileContents); // Row zero has the headers; discard it. String idColumnValue =...

feature request

I couldn't get the this library to work and after an hour I discovered that it searched for an escaped newline character as EOL.