我想我不太擅长正则表达式,所以这是我的问题(我确定这很容易解决,但不知何故我似乎找不到如何解决)
var word = "aaa";
text = text.replace( new RegExp(word, "g"),
"<span style='background-color: yellow'>"+word+"</span>");
这在大多数情况下都有效。
我想要做的是正则表达式只有在 word 后面没有 char /并且前面没有 char "时才能工作。