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