Click or drag to resize
Regex Constructor (String)
Initializes a new instance of the System.Text.RegularExpressions.Regex class for the specified regular expression.

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

Parameters

pattern
Type: SystemString
The regular expression pattern to match.
Exceptions
ExceptionCondition
ArgumentExceptionA regular expression parsing error occurred.
ArgumentNullExceptionpattern is null.
See Also