我正在尝试替换字符串中的所有/n, <br>
andspace
并将它们替换为''
.
我的方法是使用replace
. 但是,我收到以下错误。
Uncaught SyntaxError: Unexpected string
我知道
console.log(text.value[langID]) would output bunch of texts.
但是当我将代码更改为此时出现错误。
console.log(text.value[langID].replace('/\n|<br>|\s/g', ''));
我不确定这里出了什么问题,以及我的 rex 模式是否可以过滤我的要求。
谁能给我一个提示?
非常感谢!