js的replaceAll()

原文地址:js的replaceAll() 作者:Jackie_夜空

js中没有java中的replaceAll()函数,为了达到与java的replaceAll()一样的效果,我们可以用如下代码实现:

String.prototype.replaceAll = function(s1,s2) {

    return this.replace(new RegExp(s1,"gm"),s2);

}

调用方式:

abcde=document.getElementByIdx_x( "id" ).innerHTML;

abcde=abcde.replaceAll("<","&lt;");

abcde=abcde.replaceAll(">","&gt;");

--------------------------------------------------------------------

-- -- 转自http://hi.baidu.com/javasea/blog/item/4d99a226dd00d4158b82a14b.html

 

<script    language="javascript">   
   var    s="abceasdfsdfd";   
   document.write(s.replace(/w{1}$/,""));   
   </script>   
  
   由于功能简单这里就不罗嗦了

<script language="javascript">
function good()
{var h=document.getElementByIdx_x("demo");
h.innerText=h.innerText.replaceall("hh","gg");
}
String.prototype.replaceall=function(s1,s2)
{var demo=this
while(demo.indexOf("hh")!=-1)
demo=demo.replace(s1,s2);
return demo;
}
</script>

<div >dfjdfihhddfffhh</div>
<input type="button" value="change" >

或var temp = document.getElementByIdx_x("cont").value; for(var j = 0 ; j < temp.length-1 ; j++){ temp=temp.replace("rn","
"); }

 

--------------------------------------------------------------------

-- -- 转自javaeye

第一次发现JavaScript中replace() 方法如果直接用str.replace("-","!") 只会替换第一个匹配的字符.
而str.replace(/-/g,"!")则可以全部替换掉匹配的字符(g为全局标志)。

replace()
The replace() method returns the string that results when you replace text matching its first argument
(a regular expression) with the text of the second argument (a string).
If the g (global) flag is not set in the regular expression declaration, this method replaces only the first
occurrence of the pattern. For example,

var s = "Hello. Regexps are fun." ;s = s.replace(/./, "!" ); // replace first period with an exclamation pointalert(s);

produces the string “Hello! Regexps are fun.” Including the g flag will cause the interpreter to
perform a global replace, finding and replacing every matching substring. For example,

var s = "Hello. Regexps are fun." ;s = s.replace(/./g, "!" ); // replace all periods with exclamation pointsalert(s);

yields this result: “Hello! Regexps are fun!”

所以可以用以下几种方式.:
string.replace(/reallyDo/g, replaceWith);
string.replace(new RegExp(reallyDo, 'g'), replaceWith);

string:字符串表达式包含要替代的子字符串。
reallyDo:被搜索的子字符串。
replaceWith:用于替换的子字符串。

 

Js代码
  1. <script type="text/javascript">   
  2. String.prototype.replaceAll = function(reallyDo, replaceWith, ignoreCase) {   
  3.     if (!RegExp.prototype.isPrototypeOf(reallyDo)) {   
  4.         return this.replace(new RegExp(reallyDo, (ignoreCase ? "gi": "g")), replaceWith);   
  5.      } else {   
  6.         return this.replace(reallyDo, replaceWith);   
  7.      }   
  8. }   
  9. </script>  
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值