如何将单词更改为特定单词?

我需要更改单词,例如我有一个文本:

“你好”

我需要将其更改为:

“你好”

我如何检测文本是否包含例如字符“h”,然后将其更改为字符“ჰ”?


白衣染霜花
浏览 107回答 2
2回答

皈依舞

更换方法:var str = "hello";var newStr = str.replace("h", "Y");console.log(newStr);

斯蒂芬大帝

这取决于你真正想要什么。如果你只想检测hello你可以使用一个简单的replace():let str = 'hello, how are you?'let newStr = str.replace('hello', 'ჰელლო')console.log(newStr) // Output: 'ჰელლო, how are you?'如果您只需要检测第一个字母,h您可以执行相同的操作:let str = 'hello, how are you?'let newStr = str.replace('h', 'ჰ')console.log(newStr) // Output: 'ჰello, how are you?'但如果你想检测所有字母,h你必须使用RegExplet str = 'hello, how are you?'let newStr = str.replace(/h/g, 'ჰ')console.log(newStr) // Output: 'ჰello, ჰow are you?'
打开App,查看更多内容
随时随地看视频慕课网APP