Click or drag to resize
RegexMatch Method (String, String)
Searches the specified input string for the first occurrence of 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 static Match Match(
	string input,
	string pattern
)

Parameters

input
Type: SystemString
The string to search for a match.
pattern
Type: SystemString
The regular expression pattern to match.

Return Value

Type: Match
An object that contains information about the match.
See Also