Я знаю, що це нерозумно, але я почуваюся творчим сьогодні вранці:
'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"
Отже, все, що вам потрібно зробити, - це додати цю функцію до прототипу String:
String.prototype.replaceLast = function (what, replacement) {
return this.split(' ').reverse().join(' ').replace(new RegExp(what), replacement).split(' ').reverse().join(' ');
};
Потім запустіть його так:
str = str.replaceLast('one', 'finish');
Одне обмеження, яке ви повинні знати, полягає в тому, що, оскільки функція розділена на пробіл, ви, мабуть, не можете нічого знайти / замінити пробілом.
Насправді, тепер, коли я думаю про це, ви могли обійти проблему «простору», розділивши порожній маркер.
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');