RegexIsMatch Method (String, String) |
Indicates whether the specified regular expression finds a match in the specified
input string.
Namespace: System.Text.RegularExpressionsAssembly: CSharpXamlForHtml5.System.dll (in CSharpXamlForHtml5.System.dll.dll) Version: 1.0.0.0
Syntax public static bool IsMatch(
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:
Booleantrue if the regular expression finds a match; otherwise, false.
See Also