Example usage for Java java.util.regex MatchResult fields, constructors, methods, implement or subclass
The text is from its open source code.
int | end(int group) Returns the offset after the last character of the subsequence captured by the given group during this match. |
int | end() Returns the offset after the last character matched. |
String | group(int group) Returns the input subsequence captured by the given group during the previous match operation. |
String | group() Returns the input subsequence matched by the previous match. |
int | groupCount() Returns the number of capturing groups in this match result's pattern. |
int | start() Returns the start index of the match. |
int | start(int group) Returns the start index of the subsequence captured by the given group during this match. |