static Matcher regexp(S pat, S s) { ret compileRegexp(pat).matcher(s); } static Matcher regexp(Pattern pat, S s) { ret pat.matcher(s); }