|
TGRegularExpression
|
Encapsulates a regular expression search engine. This object will build a state machine from a regular expression, which can then be matched againsts strings. The regular expression search engine supports:
• '?' zero or one • '*' zero or more • '+' one or more • '|' Choice • '^' Anchor at beginning (match must start at first position • '$' Anchor at end (match #13) • '-' range, e.g., 0-9 • '.' any single char |
Warning
|
This engine only works with ansi strings, not Unicode.
|
|