字符串替换

//普通的 relpace方法写法
var str = "relace thisthisthisthis";

str.replace('this','that');

 



只会替换一个。

结果显示的 relace thatthisthisthis;

 

如果需要替换全部的字符串的话 需要用到正则表达

var str = "relace thisthisthisthis";

str.replace(/this/g,'that');

 

你可能感兴趣的:(字符串)