FORMULA LANGUAGE
Tests a string for a pattern string. Because the pattern string can contain a number of "wildcard" characters and logical symbols, you can test for complex character patterns.
Syntax
@Matches( string ; pattern )
Parameters
string
Note Simple characters in the pattern are not case-sensitive. Characters enclosed in braces must be matched exactly, and are case-sensitive. The character set {A-z} includes not just upper and lower case alphabet characters but also the backslash, underscore, and square brackets characters.
flag
Examples of pattern matching:
If the first or second parameter is a list, the function returns true if any element in the second parameter matches any element in the first parameter.
Language cross-reference
Like operator of LotusScript language
Example See Also