在 JavaScript 中假设我有一个字符串:“test test hello test test”
我知道如何用“再见”替换“你好”:
replace("hello","byebye");
但是在“hello”之后添加“byebye”的最佳方法是什么,所以我的字符串将变为:“test test hello byebye test test”,使用正则表达式?
谢谢。
在 JavaScript 中假设我有一个字符串:“test test hello test test”
我知道如何用“再见”替换“你好”:
replace("hello","byebye");
但是在“hello”之后添加“byebye”的最佳方法是什么,所以我的字符串将变为:“test test hello byebye test test”,使用正则表达式?
谢谢。