斯蒂芬大帝
这取决于你真正想要什么。如果你只想检测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?'