java.util.regex.MatchResult |
Known Indirect Subclasses |
Holds the results of a successful match of a Pattern
against a
given string. The result is divided into groups, with one group for each
pair of parentheses in the regular expression and an additional group for
the whole regular expression. The start, end, and contents of each group
can be queried.
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Returns the index of the first character following the text that matched
the whole regular expression.
| |||||||||||
Returns the index of the first character following the text that matched
a given group.
| |||||||||||
Returns the text that matched the whole regular expression.
| |||||||||||
Returns the text that matched a given group of the regular expression.
| |||||||||||
Returns the number of groups in the result, which is always equal to
the number of groups in the original regular expression.
| |||||||||||
Returns the index of the first character of the text that matched
the whole regular expression.
| |||||||||||
Returns the index of the first character of the text that matched a given
group.
|
Returns the index of the first character following the text that matched the whole regular expression.
Returns the index of the first character following the text that matched a given group.
group | the group, ranging from 0 to groupCount() - 1, with 0 representing the whole pattern. |
---|
Returns the text that matched the whole regular expression.
Returns the text that matched a given group of the regular expression.
group | the group, ranging from 0 to groupCount() - 1, with 0 representing the whole pattern. |
---|
Returns the number of groups in the result, which is always equal to the number of groups in the original regular expression.
Returns the index of the first character of the text that matched the whole regular expression.
Returns the index of the first character of the text that matched a given group.
group | the group, ranging from 0 to groupCount() - 1, with 0 representing the whole pattern. |
---|