I would like to know how to split up a large string into a series of smaller strings or words. For example:
I want to walk my dog.
See my other answer if your phrase contains accentuated characters :
String[] listeMots = phrase.split("\\P{L}+");