javascript中的replace只会替换第一个匹配
如果要全部替换的话只能重写方法实现replaceAll
记录一下
String.prototype.replaceAll = function (s1, s2) {
return this.replace(new RegExp(s1,"gm"),s2);
}
2021-09-14 06:47:42
javascript中的replace只会替换第一个匹配
如果要全部替换的话只能重写方法实现replaceAll
记录一下
String.prototype.replaceAll = function (s1, s2) {
return this.replace(new RegExp(s1,"gm"),s2);
}