Home | History | Annotate | Download | only in dist

Lines Matching full:matching

54 //   "(?i)hello"           -- (?i) turns on case-insensitive matching
58 // MATCHING INTERFACE:
83 // MATCHING WITH SUB-STRING EXTRACTION:
124 // The matching interface supports at most 16 arguments per call.
144 // UTF-8 AND THE MATCHING INTERFACE:
151 // may depend on the UTF8 flag, so always use it when matching
188 // PCRE_NO_AUTO_CAPTURE disables matching parens N/A (*)
193 // (*) Both Perl and PCRE allow non matching parentheses by means of the
306 // can be used to insert text matching corresponding parenthesized
308 // matching text. E.g.,
318 // Replacements are not subject to re-matching. E.g.,
328 // substitutions. The non-matching portions of "text" are ignored.
484 // Interface for regular expression matching. Also corresponds to a
530 /***** The useful part: the matching interface *****/
629 /***** Generic matching interface *****/
638 // General matching routine. Stores the length of the match in
668 // the last subpattern with a match) if matching was successful
670 // I.e. for RE("(foo)|(bar)|(baz)") it will return 2, 3, and 4 when matching
672 // When matching RE("(foo)|hello") against "hello", it will return 1.