static int indexOf_regexpIC(S s, S pat) {
  Matcher m = compileRegexpIC(pat).matcher(s);
  ret m.find() ? m.start() : -1;
}