I need to split a string at all whitespace, it should ONLY contain the words themselves.
How can I do this in vb.net?
Tabs, Newlines, etc. must all be split
String.Split() (no parameters) does split on all whitespace (including LF/CR)