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