Here you can find the source of replaceAllRegExp(find, replace)
String.prototype.replaceAllRegExp = function(find, replace){ return this.replace( new RegExp( find, "g" ), replace ); };
String.prototype.replaceAll = function(toReplace, replacee) { var workString = this; while (workString.indexOf(toReplace) > -1) { workString = workString.replace(toReplace, replacee); return workString; var testString = '<p>Please visit <a href="http://academy.telerik.com">our site</a> to choose a training course. Also visit <a href="www.devbg.org">our forum</a> to discuss the courses.</p>'; var workString = testString.replaceAll('</a>', '[/URL]'); ...
String.prototype.replaceAll = function(token, newToken, ignoreCase) { var str, i = -1, _token; if((str = this.toString()) && typeof token === "string") { _token = ignoreCase === true? token.toLowerCase() : undefined; while((i = ( _token !== undefined? str.toLowerCase().indexOf( _token, i >= 0? i + newToken.length : 0 ...
String.prototype.replaceAll = function(token, newToken, ignoreCase) { var str, i = -1, _token; if((str = this.toString()) && typeof token === "string") { _token = ignoreCase === true? token.toLowerCase() : undefined; while((i = ( _token !== undefined? str.toLowerCase().indexOf( _token, i >= 0? i + newToken.length : 0 ...
String.prototype.replaceAll = function(value, replace){ return this.replace(new RegExp(value, 'g'), replace);
String.prototype.replaceAll = function(whichText, withText) { var inText = this.toString(); var parts = inText.split(whichText); var result = parts.join(withText); return result; };
String.prototype.replaceAll = jCube.String.replaceAll = function( sToSearch, sReplacement) { return this.replace( RegExp(sToSearch, "g"), sReplacement);
String.prototype.replaceArgs = function(args) var re = new RegExp("%([0-9]+)", "g"); var replacerCallback = function(match, p1, offset, string) return args[parseInt(p1) - 1]; return this.replace(re, replacerCallback);
String.prototype.replaceAt=function(i, c) { return this.substr(0, i) + c + this.substr(i + c.length);
String.prototype.replaceAt = function(index, ch) { return this.substr(0, index) + ch + this.substr(index + ch.length); };