Java.Util.Regex.IMatchResult Members

The members of Java.Util.Regex.IMatchResult are listed below.

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.