can I use just one statement to figure out if  substring “a” ,"b" "c" are in  string "adfbdfc" ?  not use the statement like <br><br>("a" in "adfbdfc")  or ( "b" in "adfbdfc") or ("c" in "adfbdfc" ) ,because if I have lots of substring, this could sucks<br>