Trying to write a short method so that I can parse a string and extract the first word. I have been looking for the best way to do this, can anyone help ?
I assume I would use str.split, but I am not sure how to call this only once. What I would like to do is extract the first word from a string and save that in one variable, and and put the rest of the sentence in another variable.
Can anyone help with this ?