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.
Use split()
String words[] = stringInstance.split(" ");