Regex Express用字符串中的\ u替换反斜杠\的每个实例

时间:2014-11-26 20:31:15

标签: javascript regex string unicode replace

我真的需要你的帮助以及那些非常了解正则表达式的人。

如何在字符串中用反斜杠u "\"替换单反斜杠"\u"的每个实例。

var oldstring = "Pneus de contrefa\00E7on. Prot\00E9gez-Vous"

导致以下新字符串:

var newstring = "Pneus de contrefa\u00E7on. Prot\u00E9gez-Vous"

我的意图是在新字符串上使用unescape:

unescape(newstring)

1 个答案:

答案 0 :(得分:0)

为此,我不推荐使用正则表达式。我会做以下事情:

var res = str.replace("\\", "\\u");