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
...