我需要替换输入值中的最后一个单词
我正在使用此代码,
Get_value =$(input).val();
new_word= "new word";
function ReplaceLastWord(Get_value, new_word) {
return Get_value.replace(/\w*$/, new_word);
}
$(input).val(ReplaceLastWord(Get_value, new_word));
它的工作,但仅适用于英语...我在输入中使用泰米尔语
$(input).val()="கோச்மேடிக்ஸ் ச்னக்க்ஸ்";
对于这种语言,我需要使用此代码。
最佳答案
尝试这个
var lastWord = function(inputString,newstring) {
inputString=inputString.replace((""+inputString).replace(/[\s-]+$/,'').split(/[\s-]/).pop(),newstring)
alert(inputString);
};
lastWord("கோச்மேடிக்ஸ் ச்னக்க்ஸ்",'hi');
Live Demo
这里inputString是输入值,而newstring是要替换的单词。
如果这可以帮助您将其标记为答案
关于javascript - Javascript/jQuery替换泰米尔语输入框中的最后一个单词?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12213783/