Java.Util.Regex.IMatchResult: Method Members

The methods of Java.Util.Regex.IMatchResult are listed below. For a list of all members, see the IMatchResult Members list.

Public Methods

End() : int
Returns the index of the first character following the text that matched the whole regular expression.
End(int) : int
Returns the index of the first character following the text that matched a given group.
Group() : string
Returns the text that matched the whole regular expression.
Group(int) : string
Returns the text that matched a given group of the regular expression.
GroupCount() : int
Returns the number of groups in the results, which is always equal to the number of groups in the original regular expression.
Start() : int
Returns the index of the first character of the text that matched the whole regular expression.
Start(int) : int
Returns the index of the first character of the text that matched a given group.