如果单元格以双引号(转义引号)作为前第一个字符,则将抛出异常。
例如
(csv/read-csv "this,\"\"that\"\",the other")
产生
{color:red}
异常CSV错误(意外的字符:t)clojure.data.csv/read-quoted-cell (csv.clj:36)
{color}
但这是
(csv/read-csv "this, \"\"that\"\",the other")
产生正确的输出
((link: "this" " \"\"that\"\"" "the other"))