How can I split a string by white-space no mater how long the white-space is?
For example, from the following string:
"the quick brown fox jumps over the lazy dog"
I would get an array of
['the', 'quick', 'brown', 'fox', 'jumps', 'over', 'the', 'lazy', 'dog'];