我有这个字符串
if !enemyNodeArray.isEmpty {
makeActionWithIndex(0)
}
我想在所有特殊字符前预备d = "&&hell+lo";
。所以我想要的预期输出是
\
这里我正在做两个正则表达式,但没有给出预期的输出:
\&&hell\+o
我检查了this link但无法找到如何替换给定字符串中的rex1 = d.replace(/[+-=&&><!(){}[\]"~*?:\/]/g, "\\$&");
alert(rex1);
rex2 = d.replace(/&{2}/g, "\\$&");
alert(rex2);
。
我想在javascript和PHP中运行它。
&&
在JS工作正常,但如果我这样做
text.replace(/[+-=><!(){}[\]"~*?:\/]|&&/g, "\\$&")
在PHP中,它不起作用