多种条件下的滑动字符串 - Google Script

时间:2018-06-04 13:42:44

标签: javascript regex google-apps-script google-sheets

我需要在多个单词上拆分字符串,例如“update”,“technical”,“product” 我正在使用此表达式,但它不适用于多个条件。

var text = textRaw.split(/\s*update\s*/g);

关于如何向表达式添加多个条件的任何想法?

1 个答案:

答案 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);