Lines Matching refs:group

33  * groups and group boundaries can be seen but not modified through
54 * Returns the start index of the subsequence captured by the given group
62 * @param group
63 * The index of a capturing group in this matcher's pattern
65 * @return The index of the first character captured by the group,
66 * or <tt>-1</tt> if the match was successful but the group
74 * If there is no capturing group in the pattern
77 public int start(int group);
92 * captured by the given group during this match.
99 * @param group
100 * The index of a capturing group in this matcher's pattern
102 * @return The offset after the last character captured by the group,
104 * but the group itself did not match anything
111 * If there is no capturing group in the pattern
114 public int end(int group);
120 * the expressions <i>m.</i><tt>group()</tt> and
135 public String group();
138 * Returns the input subsequence captured by the given group during the
141 * <p> For a matcher <i>m</i>, input sequence <i>s</i>, and group index
142 * <i>g</i>, the expressions <i>m.</i><tt>group(</tt><i>g</i><tt>)</tt> and
148 * the expression <tt>m.group(0)</tt> is equivalent to <tt>m.group()</tt>.
151 * <p> If the match was successful but the group specified failed to match
154 * This method will return the empty string when such a group successfully
157 * @param group
158 * The index of a capturing group in this matcher's pattern
160 * @return The (possibly empty) subsequence captured by the group
161 * during the previous match, or <tt>null</tt> if the group
169 * If there is no capturing group in the pattern
172 public String group(int group);
181 * returned by this method is guaranteed to be a valid group index for