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
CsvToListConverter adds extra rows for empty newlines at end of file.
Would it make sense to skip these empty rows?
I fixed it by doing:
rows.removeWhere((row) => row.length == 1 && row.first == '');
EDIT: or just call trim() on String ..
trim()
The text was updated successfully, but these errors were encountered:
I will try to add this in the next days.
It's however not that easy when used as transformer.
Sorry, something went wrong.
No branches or pull requests
CsvToListConverter adds extra rows for empty newlines at end of file.
Would it make sense to skip these empty rows?
I fixed it by doing:
EDIT: or just call
trim()
on String ..The text was updated successfully, but these errors were encountered: