Christian Loitsch

Results 55 comments of Christian Loitsch

Which headers do you mean? I completely agree for the Envelope To. But I am not persuaded about message headers. Could you please provide an example where this seems useful.

I can not reproduce this issue. My simple test program doesn't have this issue: ```dart import 'package:csv/csv.dart'; main(List arguments) { final csv = ListToCsvConverter().convert([["ab", "cd"],["xy","123"]]); print(csv.codeUnits.map((cu) => cu.toRadixString(16))); } ```...

Is the output itself incorrect, or does Safari "render" the csv incorrectly. End of line characters are unfortunately not standardized. Are there multiple lines, if you save the generated file...

Are you trying to parse the same csv file? My first guess would be that the End Of Line character is different. Try the `FirstOccurenceSettingsDetector`: ```dart var d = new...

I will try to add this in the next days. It's however not that easy when used as transformer.

Excel is a very bad CSV reader / writer. I will however try to improve the default values in a future release. (Excel is for instance still not able to...

sounds reasonable. I will add this option. If you use the `transform` version this could currently (in a complicated way) be done, without 2 passes: ```dart test('Works as transformer nulls...

Agreed. I've also received a bug report that numbers are not always quoted, which shouldn't be necessary. I guess quoting behavior should be an enum: always,onlyStrings,onlyWhenNecessary (something like that) This...

Hi, I intend to improve your PR slightly. If I don't find the time in the next few weeks, I will merge it as it is. In any case thanks...

Hello tejainece. The current version does not support RegEx. Improving this library is definitely on my ToDo list, but don't hold your breath.