baker95935

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

直接上函数吧  不废话

function replacestring(oldstr,newstr,text)
{
 
      var exp = new RegExp(oldstr,'g');
      var c=text.replace(exp,newstr);
      return c;
}
 var oldstr='world';
var newstr='cccc';
var text='Hello world, Hello world';
var aa= replacestring(oldstr,newstr,text);
 console.log(aa); 

 

posted on 2019-08-10 11:07  baker95935  阅读(340)  评论(0编辑  收藏  举报