java tokenizer or word breaker, and for different languages
listed in answer
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”, “”);

New Comments