You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Issue
I notice that several comma's in text avoid parser to split text correctly between fields.
Reproduced with version 2.0.0 and older versions of library.
"MY_TEXT_KEY";"Content of My Text.";"C'est le content, le content du text."
myfile_example_with_bug.csv
"MY_TEXT_KEY";"Content of My Text.";"C'est le content, le, content du text."
Description of issue
Launch parser with myfile_working_example.csv file will generate output with 3 fields and its what we expect.
output using myfile_working_example.csv:
{"field1":"MY_TEXT_KEY","field2":"Content of My Text.","field3":"C'est le content, le content du text."}
However, launch parser with myfile_example_with_bug.csv file will generate output where fields are not separate and merged in single field which is error. The reason is added comma in le, content part of text
output using myfile_example_with_bug.csv:
{"field1":"MY_TEXT_KEY\";\"Content of My Text.\";\"C'est le content, le, content du text."}
to note: if delimiter will not contain comma, it will split correctly the text with myfile_example_with_bug.csv. However, as API of delimiter its array of items, it looks like border condition that provoke bug.
Thank you
The text was updated successfully, but these errors were encountered:
Hello
Issue
I notice that several comma's in text avoid parser to split text correctly between fields.
Reproduced with version 2.0.0 and older versions of library.
Bootcode:
myfile_working_example.csv
myfile_example_with_bug.csv
Description of issue
Launch parser with myfile_working_example.csv file will generate output with 3 fields and its what we expect.
output using myfile_working_example.csv:
However, launch parser with myfile_example_with_bug.csv file will generate output where fields are not separate and merged in single field which is error. The reason is added comma in
le, content
part of textoutput using myfile_example_with_bug.csv:
to note: if delimiter will not contain comma, it will split correctly the text with
myfile_example_with_bug.csv
. However, as API of delimiter its array of items, it looks like border condition that provoke bug.Thank you
The text was updated successfully, but these errors were encountered: