Enum RegexpExecOption (gb.pcre)
Enum RegexpExecOption Is Anchored, NoUTF8Check, NotBOL, NotEOL, NotEmpty
|
Constant
|
Description
|
|
Anchored
|
If this compilation is specified, the pattern is forced to be "anchored", that is, it is constrained to match only at the first matching point in
the string that is being searched (the "subject string").
|
|
NoUTF8Check
|
When the UTF8 option is set, the validity of the pattern as a UTF-8 string is automatically checked.
|
|
NotBOL
|
With the MultiLine constant specified, indicates that the caret (^) expression should not match the beginning of the string. Without the MultiLine constant, indicates that the caret should never match anything.
|
|
NotEOL
|
With the MultiLine constant specified, indicates that the dollar ($) expression should not match the end of the string. Without the MultiLine constant, indicates that the dollar should never match anything.
|
|
NotEmpty
|
An empty string is not considered to be a valid match if this option is set. If there are alternatives in the pattern, they are
tried. If all the alternatives match the empty string, the entire match fails.
|