如何删除Given String中的 CRLF 以解决问题?
因为我们所有人都知道Javascript不支持多行字符串。 e.g。
var str = "Hello
I am Ashwin";
不允许。 但我们应该这样写。
var str = "Hello" + " I am Ashwin";
或者 var str =“Hello \ 我是Ashwin“;
data.setValue(27, 2, 'This is my line with break here
');
在上面的Javascript中,我在运行时遇到错误“ SyntaxError:Unexpected token ILLEGAL ” 我想用替换给定字符串中的现有CRLF来准备数据dynemic,它将变成这样。
data.setValue(27, 2, 'Team Effectiveness in Primary Care Networks in Alberta');
提前感谢大Javascript解决方案
答案 0 :(得分:0)
目前唯一的一种方法是在行尾添加 \ :
data.setValue(27, 2, 'This is my line with break here\
');