exhelp strcasematch
it returns the following:
float strcasematch (string pattern, string s)
Description:
Does pattern matching comparison for a string ignoring case
sensitivity. If the pattern matches the string, the return code
will be 1 otherwise, the return code will be 0. Multiple patterns
may be specified using a comma separated list.
Examples:
Will return 1:
strmatch("FOO*", "foobar")
Will return 0:
strmatch("?baR", "fred")
Will return 1:
strmatch("FoO*,bAr*, "bar")
See also: strcmp strcasecmp
the examples should be strcasematch, not strmatch
cheers,
rod.
