Click or drag to resize
Regex Constructor (String, RegexOptions)
Initializes a new instance of the System.Text.RegularExpressions.Regex class for the specified regular expression, with options that modify the pattern.

Namespace: System.Text.RegularExpressions
Assembly: CSharpXamlForHtml5.System.dll (in CSharpXamlForHtml5.System.dll.dll) Version: 1.0.0.0
Syntax
C#
public Regex(
	string pattern,
	RegexOptions options
)

Parameters

pattern
Type: SystemString
The regular expression pattern to match.
options
Type: System.Text.RegularExpressionsRegexOptions
A bitwise combination of the enumeration values that modify the regular expression.
See Also