我真的需要你的帮助以及那些非常了解正则表达式的人。
如何在字符串中用反斜杠u "\"
替换单反斜杠"\u"
的每个实例。
var oldstring = "Pneus de contrefa\00E7on. Prot\00E9gez-Vous"
导致以下新字符串:
var newstring = "Pneus de contrefa\u00E7on. Prot\u00E9gez-Vous"
我的意图是在新字符串上使用unescape:
unescape(newstring)
答案 0 :(得分:0)
为此,我不推荐使用正则表达式。我会做以下事情:
var res = str.replace("\\", "\\u");