static int countStringsContainingRegexpIC(S regexp, Iterable l) { int n = 0; if (l != null) for (S s : l) if (regexpFindIC(regexp, s)) ++n; ret n; }