Search notes:
System.Text.RegularExpressions.RegexOptions (enum)
| 0 | None |
| 1 | IgnoreCase |
| 2 | Multiline |
| 4 | ExplicitCapture |
| 8 | Compiled |
| 16 | Singleline |
| 32 | IgnorePatternWhitespace |
| 64 | RightToLeft |
| 256 | ECMAScript |
| 512 | CultureInvariant |
The table above was produced with:
$enumValues = [enum]::GetValues('System.Text.RegularExpressions.RegexOptions')
$enumValues | foreach-object {
'{0,6} {1}' -f $_.value__, $_.ToString()
}
See also
A
System.Text.RegularExpressions.RegexOptions object is returned by
System.Text.RegularExpressions.Regex`.