static S regexpExtract(S pat, S s) { if (s == null) null; Matcher m = regexpMatcher(pat, s); ret m.find() ? m.group() : null; }