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
I tried loading a CSV file (using the Adapter) with a structure like this:
column1, column2, "Hi, column3"
Important: There is a space after each comma!
I set columnSeparator to ,
columnSeparator
,
I would expect to receive 3 columns like so:
column1 column2 Hi, column3
The Adapter now seems not to take double quotes into account as reserved characters. Instead, it produces this result with 4 columns:
column1 column2 "Hi column3"
I have attached a sample CSV file for you to try it out. quotes.zip
The problem does not occur if you omit the space after the commas.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I tried loading a CSV file (using the Adapter) with a structure like this:
Important: There is a space after each comma!
I set
columnSeparator
to,
Expected result
I would expect to receive 3 columns like so:
Actual result
The Adapter now seems not to take double quotes into account as reserved characters. Instead, it produces this result with 4 columns:
I have attached a sample CSV file for you to try it out.
quotes.zip
The problem does not occur if you omit the space after the commas.
The text was updated successfully, but these errors were encountered: