当前位置: 代码迷 >> JavaScript >> 自个儿写js replaceAll
  详细解决方案

自个儿写js replaceAll

热度:627   发布时间:2012-10-30 16:13:36.0
自己写js replaceAll

在js里实现类似java的replaceAll有俩中途径

1.为string添加ReplaceAll方法

?

String.prototype.ReplaceAll = function (AFindText,ARepText){
raRegExp = new RegExp(AFindText,"g")
return this.replace(raRegExp,ARepText)
};
alert("s|df|s|f".ReplaceAll("\\|","->")+"\n"+"s|df|s|f");

?

2.或者更简单一点

alert("s|df|s|f".replace(/\|/gm,"->")+"\n"+"s|df|s|f")

?

这在替换文本,或者高亮显示很方便的

?

?