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
Steps to reproduce: Go to: https://www.papaparse.com/demo Try to parse this string:
feedback_event;feedback_time verified;1708657810
OBS: The third line is empty (If we remove the third-line, it works) This is the same as:
feedback_event;feedback_time\nverified;170865781023\n
OBS: Usually the editors add this \n in the end of the last line.
\n
Parameters:
Delimiters: 'auto', Preview: 1
Results:
{ "data": [ { "feedback_event;feedback_time": "verified;1708657810" } ], "errors": [ { "type": "Delimiter", "code": "UndetectableDelimiter", "message": "Unable to auto-detect delimiting character; defaulted to ','" } ], "meta": { "delimiter": ",", "linebreak": "\n", "aborted": false, "truncated": true, "cursor": 49, "fields": [ "feedback_event;feedback_time" ] } }
Expected results: Should parse the string and detect the ; as delimiter
;
OBS:
,
The text was updated successfully, but these errors were encountered:
Run into the same issue today. Thanks for reporting it!
Sorry, something went wrong.
Had this issue as well. If you set the skipEmptyLines to true, it parses it correctly.
skipEmptyLines
No branches or pull requests
Steps to reproduce:
Go to: https://www.papaparse.com/demo
Try to parse this string:
OBS: The third line is empty (If we remove the third-line, it works)
This is the same as:
OBS: Usually the editors add this
\n
in the end of the last line.Parameters:
Results:
Expected results:
Should parse the string and detect the
;
as delimiterOBS:
,
as delimiter, it works.The text was updated successfully, but these errors were encountered: