RegexOptions
Regex options.
Definition: regex_options.h:10
@ Compiled
Compile regex for performance. Always done by default.
@ ECMAScript
Use ECMAScript syntax. Ignored.
@ Singleline
Makes '.' match any character without exceptions (normally, newline characters are not matched).
@ Multiline
Treat '^' and '$' as beginning and end of line, not whole string.
@ RightToLeft
Right-to-left matching. Unsupported.
@ ExplicitCapture
Explicit capturing only. Ignored.
@ IgnorePatternWhitespace
Ignore whitespaces in pattern. Unsupported.
@ CultureInvariant
Use culture-invariant matching. Ignored.