static S toAcronym(S s) { new StringBuilder buf; for (S w : words2(s)) if (isIdentifier(w)) buf.append(firstChar(w)); ret str(buf); }