I suspect that the code you are thinking of is more likely to be for
 Code:
If $STRING="abc" OR $STRING="def" OR STRING="ghij"...

Which could be replaced with
 Code:
In InStr("~abc~def~ghij~","~"+$STRING+"~")...


I can't think of a short-cut for multiple AND-ed InStr() in the form that you've asked.