我的博客
欢迎来到我的博客
bunny.icu

为字符串增加replaceAll函数

为字符串增加replaceAll函数
String.prototype.replaceAll = function(s1,s2){
    return this.replace(new RegExp(s1,"gm"),s2);
};

版权声明


本作品系原创, 转载须遵循 CC BY-NC-ND 4.0 许可协议
本文标题:为字符串增加replaceAll函数
本文链接:https://www.bunny.icu/archives/1135

推荐文章

发表评论

textsms
account_circle
email

bunny.icu

为字符串增加replaceAll函数
为字符串增加replaceAll函数
扫描二维码继续阅读
2020-03-07