/**
* ReplaceAll by Fagner Brack (MIT Licensed)
* Replaces all occurrences of a substring in a string
*/
String.prototype.replaceAll = function( token, newToken, ignoreCase ) {
var _token;
var str = this + "";
var i = -1;
if ( typeof token === "string" ) {
if ( ignoreCase ) {
_token = token.toLowerCase();
while( (
i = str.toLowerCase().indexOf(
_token, i >= 0 ? i + newToken.length : 0
) ) !== -1
) {
str = str.substring( 0, i ) +
newToken +
str.substring( i + token.length );
}
} else {
return this.split( token ).join( newToken );
}
}
return str;
};
alert('okay.this.is.a.string'.replaceAll('.', ' '));
Mais rápido do que usar regex ...
Edição:
Talvez no momento em que eu fiz esse código, não usei o jsperf. Mas, no final, essa discussão é totalmente inútil, a diferença de desempenho não vale a legibilidade do código no mundo real; portanto, minha resposta ainda é válida, mesmo que o desempenho seja diferente da abordagem regex.
EDIT2:
Criei uma biblioteca que permite fazer isso usando uma interface fluente:
replace('.').from('okay.this.is.a.string').with(' ');
Vejo https://github.com/FagnerMartinsBrack/str-replace .