Searches the input string for the first occurrence of a regular expression, beginning at the specified starting position in the string.
An object that contains information about the match.
The Regex.Match(string, int) method returns the first substring that matches a regular expression pattern, starting at or after the startat character position, in an input string. For information about the language elements used to build a regular expression pattern, see Regular Expression Language - Quick Reference.
The regular expression pattern for which the Regex.Match(string, int) method searches is defined by the call to one of the System.Text.RegularExpressions.Regex class constructors. For more information about the elements that can form a regular expression pattern, see Regular Expression Language Elements.
You can optionally specify a starting position in the string by using the startat parameter. When the regular expression engine parses from left to right (the default), the match and the scan move rightward, starting at the character specified in startat. When the regular expression engine parses from right to left (when the regular expression pattern is constructed with the RegexOptions.RightToLeft option), the match and scan move in the opposite direction and begin with the character at startat -1. If you do not specify a starting position, the search begins at the default startat position. If the regular expression searches from left to right, the default startat position is at the left end of input; if it searches from right to left, the default startat position is at the right end of input.
If you want to restrict a match so that it begins at a particular character position in the string and the regular expression engine does not scan the remainder of the string for a match, anchor the regular expression with a \G (at the left for a left-to-right pattern, or at the right for a right-to-left pattern). This restricts the match so it must start exactly at startat.
You can determine whether the regular expression pattern has been found in the input string by checking the value of the returned System.Text.RegularExpressions.Match object's Group.Success property. If a match is found, the returned System.Text.RegularExpressions.Match object's Capture.Value property contains the substring from input that matches the regular expression pattern. If no match is found, its value is string.Empty.
This method returns the first substring found at or after the startat character position in input that matches the regular expression pattern. You can retrieve subsequent matches by repeatedly calling the returned System.Text.RegularExpressions.Match object's Match.NextMatch method. You can also retrieve all matches in a single method call by calling the Regex.Matches(string, int) method.
The System.Text.RegularExpressions.RegexMatchTimeoutException exception is thrown if the execution time of the matching operation exceeds the time-out interval specified by the Regex.#ctor(string, RegexOptions, TimeSpan) constructor. If you do not set a time-out interval when you call the constructor, the exception is thrown if the operation exeeds any time-out value established for the application domain in which the System.Text.RegularExpressions.Regex object is created. If no time-out is defined in the System.Text.RegularExpressions.Regex constructor call or in the application domain's properties, or if the time-out value is Regex.InfiniteMatchTimeout, no exception is thrown.