我正在尝试在 javascript 中使用正则表达式。让我们来看看这个场景,
str = "This; is; John; & Jane;"
我需要的结果,
str= "This* is* John* & Jane*"
这是我尝试过的,
str.replace(/\^(?!&)\w+;\s/g, "*");
请帮忙。谢谢你。
我正在尝试在 javascript 中使用正则表达式。让我们来看看这个场景,
str = "This; is; John; & Jane;"
我需要的结果,
str= "This* is* John* & Jane*"
这是我尝试过的,
str.replace(/\^(?!&)\w+;\s/g, "*");
请帮忙。谢谢你。