Tcl Library Procedures Tcl_StringMatch(3TCL)
_________________________________________________________________
NAME
Tcl_StringMatch, Tcl_StringCaseMatch - test whether a string
matches a patternSYNOPSIS
#include
intTcl_StringMatch(string, pattern)
intTcl_StringCaseMatch(string, pattern, nocase)
ARGUMENTS char *string (in) String to test. char *pattern (in) Pattern to match against string.May contain spe-
cial characters from the set *?\[]. int nocase (in) Specifies whether the match shouldbe done case-
sensitive (0) orcase-insensitive
(1)._________________________________________________________________
DESCRIPTION
This utility procedure determines whether a string matches agiven pattern. If it does, then Tcl_StringMatch returns 1.
Otherwise Tcl_StringMatch returns 0. The algorithm used for
matching is the same algorithm used in the ``string match''Tcl command and is similar to the algorithm used by the C-
shell for file name matching; see the Tcl manual entry for details. |In Tcl_StringCaseMatch, the algorithm is the same, but you |
have the option to make the matching case-insensitive. If |
you choose this (by passing nocase as 1), then the string | and pattern are essentially matched in the lower case. KEYWORDS match, pattern, string Tcl Last change: 8.1 1Tcl Library Procedures Tcl_StringMatch(3TCL)
ATTRIBUTES
See attributes(5) for descriptions of the following attri-
butes:_______________________________________
| ATTRIBUTE TYPE | ATTRIBUTE VALUE|
|____________________|__________________|_
| Availability | runtime/tcl-8 |
|____________________|__________________|_
| Interface Stability| Uncommitted ||____________________|_________________|
NOTES Source for Tcl is available on http://opensolaris.org. Tcl Last change: 8.1 2