JavaScript实现的字符串replaceAll函数代码分享_javascript技巧
程序员文章站
2022-04-04 16:34:15
...
由于javascript中的replace函数无法替换全部匹配的字符串,所以需要为String类增加一个方法,代码如下:
String.prototype.replaceAll = function(reallyDo, replaceWith, ignoreCase) {
if (!RegExp.prototype.isPrototypeOf(reallyDo)) {
return this.replace(new RegExp(reallyDo, (ignoreCase ? "gi": "g")), replaceWith);
} else {
return this.replace(reallyDo, replaceWith);
}
}
复制代码 代码如下:
String.prototype.replaceAll = function(reallyDo, replaceWith, ignoreCase) {
if (!RegExp.prototype.isPrototypeOf(reallyDo)) {
return this.replace(new RegExp(reallyDo, (ignoreCase ? "gi": "g")), replaceWith);
} else {
return this.replace(reallyDo, replaceWith);
}
}
推荐阅读
-
分享javascript实现的冒泡排序代码并优化
-
在PHP中实现Javascript的escape()函数代码
-
PHP实现Javascript中的escape及unescape函数代码分享
-
javascript实现根据函数名称字符串动态执行函数的方法示例
-
在PHP中实现Javascript的escape()函数代码
-
javascript的hashCode函数实现代码小结
-
分享javascript实现的冒泡排序代码并优化
-
PHP实现Javascript中的escape及unescape函数代码分享,escapeunescape_PHP教程
-
google地图的路线实现代码_javascript技巧
-
通过正则格式化url查询字符串实现代码_javascript技巧