static LS regexpExtractAll(S pat, S s) { if (s == null) null; Matcher m = regexpMatcher(pat, s); new LS out; while (m.find()) out.add(m.group()); ret out; }