static L splitIntoSentences_noQuotes(S s) { int i = 0; new L l; while (i <= l(s)) { int j = smartIndexOf(s, ".", i)+1; addIfNempty(l, trim(substring(s, i, j))); i = j; } ret l; }