I need to split a string into two parts: the first word, and whatever's left of the remaining string. I do this to capture the first word:
firstWord = Left(longString, Find(" ", longString) - 1)
... however I don't know what's the easiest (smartest?) way to figure out the remaining part of the string.