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.
you can use Apache commons' StringUtils class
String[] partsOfString = StringUtils.split("I want to walk my dog",StringUtils.SPACE)