1. 程式人生 > >自定義擴充套件js函式庫---string.replaceAll()---字元替換所有指定字元

自定義擴充套件js函式庫---string.replaceAll()---字元替換所有指定字元

/*
 * 自定義擴充套件js函式庫 
 * @time:181203
 * @add : string.replaceAll()---字元替換所有指定字元
 */


/*
 * string.replaceAll()---字元替換所有指定字元
 * @parameter: FindText--原文字要替換值
 * @parameter: RepText--將要替換值
 */
String.prototype.replaceAll = function (FindText, RepText) {
    var regExp = new RegExp(FindText, "g");
    return this.replace(regExp, RepText);
}