gpt4 book ai didi

javascript - 在javascript中转义字符串

转载 作者:行者123 更新时间:2023-11-30 09:52:43 25 4
gpt4 key购买 nike

我需要以某种方式转义这个字符串(使用换行符):

:-\
"123"
:-/

转义后得到这个:

:-\\n\"123\"\n:-/

我试过了,但这不是我需要的。

:-\\\n/"123/"\n:-/      .replace(/"/g,'/\"')
:-\\\n/"123/"\n:-/ .replace(/"/g,'\/"')
:-\\\n\\"123\\"\n:-/ .replace(/"/g, '\\"') ???

最佳答案

不要搞乱替换,使用 JSON.stringify:

text = document.querySelector('pre').textContent;

text = JSON.stringify(text).slice(1, -1)

alert(text)
<pre>
:-\
"123"
:-/
</pre>

关于javascript - 在javascript中转义字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35535332/

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