static L regexpAll(S pattern, S text) { new L matches; Matcher matcher = Pattern.compile(pattern).matcher(text); while (matcher.find()) matches.add(matcher.group()); return matches; }