Regex.Match Method
Silverlight
Searches an input string for a substring that matches a regular expression pattern and returns the first occurrence as a single Match object.
This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.
| Name | Description | |
|---|---|---|
|
Match(String) | Searches the specified input string for the first occurrence of the regular expression specified in the Regex constructor. |
|
Match(String, Int32) | Searches the input string for the first occurrence of a regular expression with a specified input string starting position. |
|
Match(String, String) | Searches the specified input string for the first occurrence of the regular expression supplied in the pattern parameter. |
|
Match(String, Int32, Int32) | Searches the input string for the first occurrence of a regular expression with a specified input string starting position and input string length. |
|
Match(String, String, RegexOptions) | Searches the input string for the first occurrence of the regular expression supplied in a pattern parameter with matching options supplied in an options parameter. |
Community Additions
ADD
Show: