Click or drag to resize
RegexIsMatch Method (String, Int32)
Indicates whether the regular expression specified in the System.Text.RegularExpressions.Regex constructor finds a match in the specified input string, beginning at the specified starting position in the string.

Namespace: System.Text.RegularExpressions
Assembly: CSharpXamlForHtml5.System.dll (in CSharpXamlForHtml5.System.dll.dll) Version: 1.0.0.0
Syntax
C#
public bool IsMatch(
	string input,
	int startat
)

Parameters

input
Type: SystemString
The string to search for a match.
startat
Type: SystemInt32
The character position at which to start the search.

Return Value

Type: Boolean
true if the regular expression finds a match; otherwise, false.
See Also