阅读量:0
在JavaScript中,replace()
方法用于替换字符串中匹配正则表达式的子字符串。但是,默认情况下,replace()
只替换第一个匹配项。要替换所有匹配项,您需要使用全局正则表达式(在正则表达式后面添加 g
标志)作为 replace()
方法的参数。
例如,假设我们有以下字符串:
const str = "apple, apple pie, apple juice";
要替换所有包含 “apple” 的子字符串,我们可以这样做:
const newStr = str.replace(/apple/g, "orange"); console.log(newStr); // 输出 "orange, orange pie, orange juice"
在这个例子中,我们使用了全局正则表达式 /apple/g
来匹配所有包含 “apple” 的子字符串,并将它们替换为 “orange”。