*** The new function split-string takes a string, splits it at certain
characters, and returns a list of the substrings in between the matches.

For example, (split-string "foo bar lose" " +") returns ("foo" "bar" "lose").