Sé que esto es una tontería, pero me siento creativo esta mañana:
'one two, one three, one four, one'
.split(' ') // array: ["one", "two,", "one", "three,", "one", "four,", "one"]
.reverse() // array: ["one", "four,", "one", "three,", "one", "two,", "one"]
.join(' ') // string: "one four, one three, one two, one"
.replace(/one/, 'finish') // string: "finish four, one three, one two, one"
.split(' ') // array: ["finish", "four,", "one", "three,", "one", "two,", "one"]
.reverse() // array: ["one", "two,", "one", "three,", "one", "four,", "finish"]
.join(' '); // final string: "one two, one three, one four, finish"
Entonces, realmente, todo lo que necesita hacer es agregar esta función al prototipo String:
String.prototype.replaceLast = function (what, replacement) {
return this.split(' ').reverse().join(' ').replace(new RegExp(what), replacement).split(' ').reverse().join(' ');
};
Entonces ejecútelo así:
str = str.replaceLast('one', 'finish');
Una limitación que debe saber es que, dado que la función se divide por espacio, probablemente no pueda encontrar / reemplazar nada con un espacio.
En realidad, ahora que lo pienso, podrías solucionar el problema del 'espacio' dividiéndote con un token vacío.
String.prototype.reverse = function () {
return this.split('').reverse().join('');
};
String.prototype.replaceLast = function (what, replacement) {
return this.reverse().replace(new RegExp(what.reverse()), replacement.reverse()).reverse();
};
str = str.replaceLast('one', 'finish');