我正在尝试将一个特定的单词“和”以及其他符号添加到我现有的拆分正则表达式中。这样,拆分就可以在“和”或“,”以及其他符号以及特定单词上起作用。
var searchStrings = phrase.split(/[ ,&]/);
答案 0 :(得分:0)
您可以尝试
但是,您可以尝试类似的操作
const words = 'this & that, or maybe red and blue'
.split(/[,&]|and/i );
;
以上返回
[
'this ' ,
' that' ,
' or maybe red ' ,
' blue'
]
我相信应该这样做。