我将Gmail附件中的csv文件导入现有的Google电子表格。
我使用getDataAsString()来保存整个csv内容。我尝试过不同大小,最多约6000个字符。这个字符串可以有多少个字符?
答案 0 :(得分:3)
Google Apps脚本中的字符串限制为 67,108,864(6700万)个字符。您可以使用此功能自行尝试:
function strtest() {
var str = "a";
while (1) {
str = str + str;
}
}
输出:
我不确定是否有办法通过其他方式增加此功能(例如there is a fix for this in Wordpress)。
答案 1 :(得分:1)
GAS基于Javascript,显然没有JS字符串变量限制: