![]() |
![]() |
$str.matchnocaseMatches a fixed string against a wildcard expression (case insensitive) |
||
Usage | ||
|
||
Description | ||
Returns 1 if the fixed <string> matches the <expression>, 0 otherwise. If <flags> contains the flag 'r' then <expression> is treated as a full regular expression otherwise it is treated as a simple wildcard expression containing the classic wildcards '*' and '?'. If <flags> contains the flag 'e' then only an exact match is considered (e.g. the full <string> is exactly matched by <expression>), otherwise partial matches are allowed too (e.g. <expression> is found inside <string>). The match is case insensitive. |
||
Syntax Specification | ||
|
||
Examples | ||
|
||
See also | ||
$str.match() |