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