gpt4 book ai didi

google-apps-script - Apps Script Utilities.parseCsv 在双引号内的换行符处假设新行

转载 作者:行者123 更新时间:2023-12-03 23:23:04 25 4
gpt4 key购买 nike

使用 Utilities.parseCsv() 时,双引号内的换行符被假定为完全新行。此函数的输出数组将有几个不正确的行。

我该如何解决这个问题,或者解决它?

编辑:具体来说,我可以转义只存在于双引号内的换行符吗? IE。

/r/n "I have some stuff to do:/r/n Go home/r/n Take a Nap"/r/n

将被转义为:
/r/n "I have some stuff to do://r//n Go home//r//n Take a Nap"/r/n

Edit2:2012 年的错误报告: https://code.google.com/p/google-apps-script-issues/issues/detail?id=1871

最佳答案

所以我有一个大约 10MB 50k 行的有点大的 csv 文件,其中在每行的末尾包含一个字段,其中包含用户输入的带有各种字符的注释。当我测试一小部分行时,我发现建议的正则表达式解决方案正在运行,但是当我将大文件扔给它时,又出现了错误,在使用正则表达式尝试了一些事情后,我什至让整个运行时崩溃.

顺便说一句,我在 V8 运行时上运行我的代码。

在摸索了大约一个小时之后,AppsSript 运行时并没有真正有用的错误消息。我有一个想法,如果一些奇怪的用户决定以某种奇怪的方式使用反斜杠导致某些转义出错,该怎么办。
所以我尝试用其他东西替换我数据中的所有反斜杠一段时间,直到我得到 parseCsv() 返回的数组。
有效!
我的假设是在行尾有一个\会破坏替换。

所以我的最终解决方案是:

function testParse() {
let csv =
'"title1","title2","title3"\r\n' +
'1,"person1","A ""comment"" with a \\ and \\\r\n a second line"\r\n' +
'2,"person2","Another comment"';

let sanitizedString =
csv.replace(/\\/g, '::back-slash::')
.replace(/(?=["'])(?:"[^"\\]*(?:\\[\s\S][^"\\]*)*"|'[^'\\]\r?\n(?:\\[\s\S][^'\\]\r?\n)*')/g,
match => match.replace(/\r?\n/g, "::newline::"));
let arr = Utilities.parseCsv(sanitizedString);
for (let i = 0, rows = arr.length; i < rows; i++) {
for (let j = 0, cols = arr[i].length; j < cols; j++) {
arr[i][j] =
arr[i][j].replace(/::back-slash::/g,'\\')
.replace(/::newline::/g,'\r\n');

}
}
Logger.log(arr)
}


输出:
[20-02-18 11:29:03:980 CST] [[title1, title2, title3], [1, person1, A "comment" with a \ and \
a second line], [2, person2, Another comment]]

关于google-apps-script - Apps Script Utilities.parseCsv 在双引号内的换行符处假设新行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36658793/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com