Regex.IsMatch Method
.NET Framework 3.0
Indicates whether the regular expression finds a match in the input string.
| Name | Description |
|---|---|
| Regex.IsMatch (String) | Indicates whether the regular expression specified in the Regex constructor finds a match in the input string. Supported by the .NET Compact Framework. |
| Regex.IsMatch (String, Int32) | Indicates whether the regular expression specified in the Regex constructor finds a match in the input string beginning at the specified starting position in the string. Supported by the .NET Compact Framework. |
| Regex.IsMatch (String, String) | Indicates whether the regular expression finds a match in the input string using the regular expression specified in the pattern parameter. Supported by the .NET Compact Framework. |
| Regex.IsMatch (String, String, RegexOptions) | Indicates whether the regular expression finds a match in the input string, using the regular expression specified in the pattern parameter and the matching options supplied in the options parameter. Supported by the .NET Compact Framework. |
Community Additions
ADD
Show: