static LS regexpLastGroupsIC(S pat, S s) { if (s == null) null; Matcher m = regexpIC(pat, s); LS groups = null; while (m.find()) groups = regexpGetGroups(m); ret groups; }