My program requires that I can split any random string (sentence) into vector of strings by white space.
So if I have the string: "I like to code"
Then my program will split it by white space and put it in a vector:
[I, like, to, code]
I've been trying to find the function for this, but am unable to find one.