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