我需要在多个单词上拆分字符串,例如“update”,“technical”,“product” 我正在使用此表达式,但它不适用于多个条件。
var text = textRaw.split(/\s*update\s*/g);
关于如何向表达式添加多个条件的任何想法?
答案 0 :(得分:0)
将textRaw.split(/\s*update\s*|\s*technical\s*|\s*product\s*/g)
用于拆分的多个条件:
var textRaw = "some update here";
var text = textRaw.split(/\s*update\s*|\s*technical\s*|\s*product\s*/g);
console.log(text);
var textRaw = "some update here technical some2";
var text = textRaw.split(/\s*update\s*|\s*technical\s*|\s*product\s*/g);
console.log(text);
var textRaw = "some update here technical some2 product name";
var text = textRaw.split(/\s*update\s*|\s*technical\s*|\s*product\s*/g);
console.log(text);