struct RegexOptions
in global :: System . Text . RegularExpressions
Provides enumerated values to use to set regular expression options.
public static RegexOptions Compiled
Specifies that the regular expression is compiled to an assembly. This yields faster execution but increases startup time. This value should not be assigned to the property when calling the method. For more information, see the "Compiled Regular Expressions" section in the Regular Expression Options topic.
public static RegexOptions CultureInvariant
Specifies that cultural differences in language is ignored. For more information, see the "Comparison Using the Invariant Culture" section in the Regular Expression Options topic.
public static RegexOptions ECMAScript
Enables ECMAScript-compliant behavior for the expression. This value can be used only in conjunction with the , , and values. The use of this value with any other values results in an exception. For more information on the option, see the "ECMAScript Matching Behavior" section in the Regular Expression Options topic.
public static RegexOptions ExplicitCapture
Specifies that the only valid captures are explicitly named or numbered groups of the form (?<name>...). This allows unnamed parentheses to act as noncapturing groups without the syntactic clumsiness of the expression (?:...). For more information, see the "Explicit Captures Only" section in the Regular Expression Options topic.
public static RegexOptions IgnoreCase
Specifies case-insensitive matching. For more information, see the "Case-Insensitive Matching " section in the Regular Expression Options topic.
public static RegexOptions IgnorePatternWhitespace
Eliminates unescaped white space from the pattern and enables comments marked with #. However, this value does not affect or eliminate white space in character classes, numeric quantifiers, or tokens that mark the beginning of individual regular expression language elements. For more information, see the "Ignore White Space" section of the Regular Expression Options topic.
public static RegexOptions Multiline
Multiline mode. Changes the meaning of ^ and $ so they match at the beginning and end, respectively, of any line, and not just the beginning and end of the entire string. For more information, see the "Multiline Mode" section in the Regular Expression Options topic.
public static RegexOptions None
Specifies that no options are set. For more information about the default behavior of the regular expression engine, see the "Default Options" section in the Regular Expression Options topic.
public static RegexOptions RightToLeft
Specifies that the search will be from right to left instead of from left to right. For more information, see the "Right-to-Left Mode" section in the Regular Expression Options topic.
public static RegexOptions Singleline
Specifies single-line mode. Changes the meaning of the dot (.) so it matches every character (instead of every character except \n). For more information, see the "Single-line Mode" section in the Regular Expression Options topic.
public static RegexOptions NonBacktracking
😔 No documentation found.
public int value__
😔 No documentation found.
public TypeCode GetTypeCode( )
😔 No documentation found.
public string ToString( string format, IFormatProvider provider )
😔 No documentation found.
public string ToString( IFormatProvider provider )
😔 No documentation found.
public string ToString( string format )
😔 No documentation found.
public string ToString( )
😔 No documentation found.
public int CompareTo( object target )
😔 No documentation found.
public int GetHashCode( )
😔 No documentation found.
public bool Equals( object obj )
😔 No documentation found.
public Type GetType( )
😔 No documentation found.
public bool HasFlag( Enum flag )
😔 No documentation found.