To do what I want, I know I should use the split method found in the string class, but I'm unsure how to write the regex to do what I want to do.
The regex to the split() method simply defines the delimiter that is use to separate the words. For example...
If all the words are separated by one space, then you can use " ".
If all the words are separated by one or more spaces, then you can use " +".
If all the words are separated by any white space character, then you can use "\s".
If all the words are separated by one or more of any white space character, then you can use "\s+".
Etc... well, you get the point.
Henry