| StrMatch |  String manipulation | 
| SYNTAX | StrMatch(''string'', ''searchstring'') | 
| RETURNS | NUMBER | 
| FUNCTION | The function returns TRUE (1) or FALSE (0) whenever string matches searchstring or not. 
Searchstring is can contain wild-card characters such as: This function is case sensitive (of course except wildcard characters). If you want case insensitive matching - convert both string and searchstring to lowercase or uppercase prior to matching (StrToLower/StrToUpper) | 
| EXAMPLE | x = StrMatch("Every
breath you take", "Every * you *"); //
x will be TRUE  | 
| SEE ALSO | StrFind() function , StrToLower() function , StrToUpper() function | 
The StrMatch function is used in the following formulas in AFL on-line library:
See updated/extended version on-line.