Can I import double quotation marks using CSV files and import maps?

Yes. You can import double quotation marks using CSV files and import maps by escaping the double quotation marks. To escape the double quotation marks, enclose them within another double quotation mark.

Here are a few examples to import double quotes. If you enter the following values in a CSV file:

  1. """Laptop with 15 inch display."""

  2. "Laptop with ""15 inch"" display."

  3. "Laptop with 15 inch"" display."

  4. """Laptop with ""15 inch"" display."""

  5. """Laptop with 15 inch"" display."""

Import map imports the following values:

  1. "Laptop with 15 inch display."

  2. Laptop with "15 inch" display.

  3. Laptop with 15 inch" display.

  4. "Laptop with "15 inch" display."

  5. "Laptop with 15 inch" display."