sbool regexpICMatches(S pat, S s) { ret regexpIC(pat, s).matches(); } sbool regexpICMatches(Pattern pat, S s) { ret pat.matcher(s).matches(); }