static LL ai_splitAroundCommonPhrases(S s) { LS tok = javaTokWithBrackets(s); new LL out; for (S phrase : mL("Words to split at")) if (cic(s, phrase)) addUnlessNull(out, ai_splitAroundPhrase_orNull(tok, phrase)); ret out; }