Dark Souls,
если не будет служебных символов
String.prototype.str_replace_all = function(arRegexp, str) {
var expr = new RegExp(arRegexp.join("|"), "gi");
return this.replace(expr, str)
}
alert("one two three for five".str_replace_all(["two", "for"], "|"));