static S firstMatchingNLPattern(Collection patterns, S s) { new Matches m; L tok = parse3(s); for (S pat : unnull(patterns)) if (match(pat, tok, m)) ret pat; null; }