Home | History | Annotate | Download | only in util

Lines Matching refs:matcher

19 import java.util.regex.Matcher;
179 * regex Matcher and return them as a concatenated string.
181 * @param matcher The Matcher object from which grouped text will
187 public static final String concatGroups(Matcher matcher) {
189 final int numGroups = matcher.groupCount();
192 String s = matcher.group(i);
208 * @param matcher The Matcher object from which digits and plus will
214 public static final String digitsAndPlusOnly(Matcher matcher) {
216 String matchingRegion = matcher.group();