3233343536373839404142
Text text = new Text(); for (String sentence : sentences) { sentence = sentence.replaceAll(",",""); text.addSentence(parseSentence.parse(sentence)); } text.postProcess(); return text.getSentences(); } }