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
How should my parser treat a delimiter character at end-of-record. Ignore it or create an empty field?
The text was updated successfully, but these errors were encountered:
Clause 5 of the spec covers this:
The last field in a record MUST NOT be followed by a comma. This results in a additional field with nothing in it. CSV: aaa,bbb,ccc,¬ xxx,yyy,zzz,¬ JSON: [ ["aaa", "bbb", "ccc", ""], ["xxx", "yyy", "zzz", ""] ]
The last field in a record MUST NOT be followed by a comma. This results in a additional field with nothing in it.
CSV:
aaa,bbb,ccc,¬ xxx,yyy,zzz,¬
JSON:
[ ["aaa", "bbb", "ccc", ""], ["xxx", "yyy", "zzz", ""] ]
I'm happy to discus further if you have any more questions :)
Sorry, something went wrong.
No branches or pull requests
How should my parser treat a delimiter character at end-of-record. Ignore it or create an empty field?
The text was updated successfully, but these errors were encountered: