我需要有关查找单词并在javascript中用正则表达式替换它的信息。
答案 0 :(得分:3)
您可以使用\b
指定字边界。只需将它们放在要替换的单词周围即可。
示例:
var s = "That's a car.";
s = /\ba\b/g.replace(s, "the");
变量s
现在包含字符串"That's the car"
。请注意,“那个”和“汽车”中的“a”不受影响。
答案 1 :(得分:0)
由于你还没有真正提出问题,我能做的最好的事情就是指点你:
http://www.w3schools.com/jsref/jsref_obj_regexp.asp
并告诉您字符串的替换方法是replace
,如:
var myStr = "there is a word in here";
var changedStr = myStr.replace(/word/g, "replacement");