Escaped quotation marks of CSV fail on dropsheet #3089

Closed
opened 2024-03-14 11:19:18 +00:00 by enboig · 1 comment

I am using dropsheet, and with included file escaped quotation \"are escaped, but read next , as field separator.

I am using dropsheet, and with included file escaped quotation `\"`are escaped, but read next `,` as field separator.
Owner

The correct way to embed double quotes in strings is to repeat the double quotes.

field1,field2,field3
"aaa","Lorem ""ipsum"" dolor sit amet, consetetur","bbb"
"ccc","ddd","eee"

You can discover this by entering the data in a worksheet in Excel and saving to CSV.

The correct way to embed double quotes in strings is to repeat the double quotes. ``` field1,field2,field3 "aaa","Lorem ""ipsum"" dolor sit amet, consetetur","bbb" "ccc","ddd","eee" ``` You can discover this by entering the data in a worksheet in Excel and saving to CSV.
Sign in to join this conversation.
No Milestone
No Assignees
2 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: sheetjs/sheetjs#3089
No description provided.