Java java.util.regex MatchResult fields, constructors, methods, implement or subclass

Example usage for Java java.util.regex MatchResult fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.util.regex MatchResult.

The text is from its open source code.

Method

intend(int group)
Returns the offset after the last character of the subsequence captured by the given group during this match.
intend()
Returns the offset after the last character matched.
Stringgroup(int group)
Returns the input subsequence captured by the given group during the previous match operation.
Stringgroup()
Returns the input subsequence matched by the previous match.
intgroupCount()
Returns the number of capturing groups in this match result's pattern.
intstart()
Returns the start index of the match.
intstart(int group)
Returns the start index of the subsequence captured by the given group during this match.