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);
}
}
时间: 2024-11-03 01:20:11