我需要编写一个正则表达式来与 JS .match() 函数一起使用。目标是检查具有多种选择的字符串。例如,如果 mystr 包含 word1 或 word2 或 word3,我想在下面的代码中返回 true
mystr1 = "this_is_my_test string_containing_word2_where_i_will_perform_search";
mystr2 = "this_is_my_test string_where_i_will_perform_search";
myregex = xxxxxx; // I want help regarding this line so that
if(mystr1.match(myregex)) return true; //should return true
if(mystr2.match(myregex)) return true; //should NOT return true
请问有什么帮助吗?