Welcome! Please see the About page for a little more info on how this works.

+1 vote
in data.csv by

If a cell has a double quote (an escaped quotation mark) as the first characters in the cell then an exception is thrown.

For example:
(csv/read-csv "this,\"\"that\"\",the other")

produces:
{color:red}
Exception CSV error (unexpected character: t) clojure.data.csv/read-quoted-cell (csv.clj:36)
{color}

but this:
(csv/read-csv "this, \"\"that\"\",the other")

produces this correct output:
((link: "this" " \"\"that\"\"" "the other"))

1 Answer

+1 vote
by
Reference: https://clojure.atlassian.net/browse/DCSV-14 (reported by alex+import)
...