NAME
StringMatchesAny — Like string match except you can use multiple patterns.
SYNOPSIS
StringMatchesAny PatternList String
DESCRIPTION
Return Value
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.
Arguments
PatternListA list of patterns. Each pattern should be useable with the original string match command.
StringString to check against the patterns.

For information regarding exceptions / errors, see here.
EXAMPLES
% StringMatchesAny {one tw*} two
1
% StringMatchesAny {one tw*} three
0
SEE ALSO
KEYWORDS
check, string, validation, verification