码迷,mamicode.com
首页 > Web开发 > 详细

js replaceAll

时间:2016-10-12 11:36:01      阅读:636      评论:0      收藏:0      [点我收藏+]

标签:

js 全部替换:

/**
* 替换(所有)
* @param str 要处理的字符串
* @param beRepStr 被替换的字符串
* @param toRepStr 最终生成的字符串
* @returns {string}
*/
function myReplace(str,beRepStr,toRepStr){
var result = ‘‘;
function replaceAll(str,beRepStr,toRepStr){
if(str.indexOf(beRepStr)!=-1){
replaceAll(str.replace(beRepStr,toRepStr),beRepStr,toRepStr);
}else{
result = str;
}
}
replaceAll(str,beRepStr,toRepStr);
return result;
}

js replaceAll

标签:

原文地址:http://www.cnblogs.com/SATinnovation/p/5951781.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!