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