<iREGEXLIST
Usage
See Also |
SRC="the source data"
REGEX="the regular expression"
LISTNAME="name of the list of matches"
[STARTLIST="name of list of the start positions of the matches in
the SRC"]
[ENDLIST="name of list of the end positions of the matches in the
SRC"]
MAX="maximum number of matches" (100)
FLAGS="EINBD"
>
Flags E - If this bit is set, then extended regular expression syntax
is used, if not then basic regular expression syntax is used
I - If this bit is set, then case is ignored when matching, if
not then case is significant
N - If this bit is set, then anchors do not match at new line
characters in the string. If not set, then anchors do match at new
line characters.
S - If this bit is set, then report only success or failure in
REGEXEC. If not set, then returns difference between not matching
and error.
B - If this bit is set, then the beginning-of-line operator doesn't
match the beginning of the string. If not set, then the beginning-of-line
operator does match the beginning of the string.
D - Same as B except for end-of-line instead of beginning-of-line.
iREGEXFIND, iREGEXREPLACE |