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