java tokenizer or word breaker, and for different languages

listed in answer

java tokenizer or word breaker, and for different languages
0 votes, 0.00 avg. rating (0% score)

ANSWER:

Probably it´s not the best solution, but you can use replaceAll method from String class, replacing the noise for an empty String.

For example, something like: line.replaceAll(“‘s”, “”);

by Sanz from http://stackoverflow.com/questions/10875078