PHP
·
发表于 5年以前
·
阅读量:8292
String.prototype.replaceAll = function(s1, s2) {
return this.replace(new RegExp(s1, "gm"), s2);
};