We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error in CSV:4.0.3
ListToCSVConverter generate an extra CR code for each new line.
The method convert(), generates one CR + CR + LF at the end of each line, when only one LF or one CR+LF pair is expected.
The text was updated successfully, but these errors were encountered:
I can not reproduce this issue.
My simple test program doesn't have this issue:
import 'package:csv/csv.dart'; main(List<String> arguments) { final csv = ListToCsvConverter().convert([["ab", "cd"],["xy","123"]]); print(csv.codeUnits.map((cu) => cu.toRadixString(16))); }
Do you have an idea, why this happens in your case? What are your csv settings? How do you call convert?
convert
Sorry, something went wrong.
I have the same error.
No branches or pull requests
Error in CSV:4.0.3
ListToCSVConverter generate an extra CR code for each new line.
The method convert(), generates one CR + CR + LF at the end of each line, when only one LF or one CR+LF pair is expected.
The text was updated successfully, but these errors were encountered: