How do I save words I get in a new string ?
gravarArq.println(token.getLexeme() + "_" + token.getPOSTag() + "_" + token.getFeatures());
How do I get what comes from token.getPOSTag()
and save all words that come from it into a new string ?
for (org.cogroo.text.Token token : sentence.getTokens()) { // lista de tokens
token.getStart(); token.getEnd(); // caracteres onde o token comeca e termina
token.getLexeme(); // o texto do token (palavra que ele separa e pega exp: "clinico"
token.getLemmas(); // um array com os possiveis lemas para o par lexeme+postag
token.getPOSTag(); // classe morfologica de acordo com o contexto("coloca "prp, adj,n(noun))
token.getFeatures(); // genero, numero, tempo etc
contadorTokens++;
System.out.println(token.getLexeme() + "_" + token.getPOSTag() + "_" + token.getFeatures());// imprime a palavra com o tag
gravarArq.println(token.getLexeme() + "_" + token.getPOSTag() + "_" + token.getFeatures());
//System.out.println(token.getLexeme());
}