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
We require tab delimiting as an option for our CSVs for users. Certain programs use tabs. However, using tabs results in an error like this:
$.csv.toArray('"Foo" "Bar"', {separator: '\t'})
Uncaught Error: CSVDataError: Illegal State [Row:1][Col:1]
It should produce ['Foo', 'Bar']
['Foo', 'Bar']
The text was updated successfully, but these errors were encountered:
@OscarGodson have you tried "\t" instead of '\t'?
Sorry, something went wrong.
No branches or pull requests
Delimiter with tab erroring out
We require tab delimiting as an option for our CSVs for users. Certain programs use tabs. However, using tabs results in an error like this:
Uncaught Error: CSVDataError: Illegal State [Row:1][Col:1]
Environment
Steps to reproduce
$.csv.toArray('"Foo" "Bar"', {separator: '\t'})
Expected behaviour
It should produce
['Foo', 'Bar']
Actual behaviour
Uncaught Error: CSVDataError: Illegal State [Row:1][Col:1]
The text was updated successfully, but these errors were encountered: