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