Js扩展方法ReplaceAll

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Js扩展方法ReplaceAll相关的知识,希望对你有一定的参考价值。

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);
}
}

以上是关于Js扩展方法ReplaceAll的主要内容,如果未能解决你的问题,请参考以下文章

JAVA中appendReplacement()方法和replaceAll()方法有啥区别。。

String 类中replace 和replaceAll方法的区别

Vue.js“扩展”使用的正确方法是啥?

JavaScript全部替换 - js replaceAll()

使用 jQuery 方法扩展 Zepto.js?滚动顶部()

jQuery,js如何扩展自定义方法