gpt4 book ai didi

Javascript/jQuery 用泰米尔语替换输入框中的最后一个词?

转载 作者:行者123 更新时间:2023-11-30 13:15:17 25 4
gpt4 key购买 nike

我需要替换输入值中的最后一个词

我正在使用这段代码,

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/jQuery 用泰米尔语替换输入框中的最后一个词?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12213783/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com