2024 状态 Clojure 问卷调查!中分享您的想法。

欢迎!请查看关于页面以了解更多有关如何使用本工作的信息。

+1
data.csv

如果单元格以双引号(转义引号)作为前第一个字符,则将抛出异常。

例如
(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"))

1 答案

+1
参考:[https://clojure.atlassian.net/browse/DCSV-14](https://clojure.atlassian.net/browse/DCSV-14) (由 alex+import报告)
...