Here you can find the source of replaceAll(str, replacement)
String.prototype.replaceAll = function(str, replacement) { var regex;// www . j av a 2 s. c o m regex = new RegExp(str, "ig"); return this.replace(regex, replacement); };
String.prototype.replaceAll = function (search, replacement) { var ret = this.toString().replace(search, replacement); while (ret.indexOf(search)!=-1) { ret = ret.replace(search, replacement); return ret; }; String.prototype.trim = function () { return this.replace(/^\s+|\s+$/gm, ''); ...
String.prototype.replaceAll = function (search, replacement) { var target = this; var s1 = search.replace(/[.*+?^${}()|[\]\\]/g, "\\$&"); return target.replace(new RegExp(s1, 'g'), replacement); };
String.prototype.replaceAll = function (source, target) { return this.replace(new RegExp(source, "g"), target); };
String.prototype.replaceAll = function(source,target){ var val = this; while(val.indexOf(source)>-1){ val = val.replace(source,target); return val; };
'use strict'; String.prototype.replaceAll = function(str, replaceStr) { return this.replace(new RegExp(str, 'gm'), replaceStr); };
String.prototype.replaceAll = function(str1, str2, ignore) return this.replace(new RegExp(str1.replace(/([\/\,\!\\\^\$\{\}\[\]\(\)\.\*\+\?\|\<\>\-\&])/g,"\\$&"),(ignore?"gi":"g")),(typeof(str2)=="string")?str2.replace(/\$/g,"$$$$"):str2);
'use strict'; String.prototype.replaceAll = function(str1, str2, ignore) return this.replace(new RegExp(str1.replace(/([\/\,\!\\\^\$\{\}\[\]\(\)\.\*\+\?\|\<\>\-\&])/g,"\\$&"),(ignore?"gi":"g")),(typeof(str2)=="string")?str2.replace(/\$/g,"$$$$"):str2);
String.prototype.replaceAll= function(str1,str2){ return this.replace(new RegExp(str1,"gm"),str2); };
String.prototype.replaceAll = function(strReplace, strWith) { var reg = new RegExp(strReplace, 'ig'); return this.replace(reg, strWith); };