| 1 | The string matches at least one of the elements of the pattern list. |
| 0 | The string does not match any of the elements of the pattern list. |
| PatternList | A list of patterns. Each pattern should be useable with the original string match command. |
| String | String to check against the patterns. |
% StringMatchesAny {one tw*} two
1
% StringMatchesAny {one tw*} three
0