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
何か助けてください。