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