Unable to import properly quoted fields with comma
-
I have a CSV file generated from another program. Note how the last row of data contains commas in the name.
"name","slug" "Ask in Faith","ask-faith" "Ask, Seek, and Knock","ask-seek-and-knock"
When I attempt to import this record, it breaks it into multiple terms. The industry-standard way for programs to deal with this type of situation is to use quoted text in the CSV encasing the value. Any commas inside the quotes are considered part of the value and not treated as delimiters.
Question 1 – Why is the plugin not reading the quoted text as a single value? It seems like this would be the proper way to resolve this issue.
Question 2 – If the plugin does not handle quoted values in the CSV, and I was to use an alternate delimiter, such as a Unicode character, how can I tell the plugin to split the values based on the custom delimiter? I didn’t see anything in the documentation or options that would let me specify a delimiter.
Thanks!
– Adam
- The topic ‘Unable to import properly quoted fields with comma’ is closed to new replies.