static LS regexpICFullMatch_groups(S pattern, S text) { Matcher matcher = regexpCompile(pattern).matcher(text); ret matcher.matches() ? regexpGetGroups(matcher) : null; }