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