I am trying to split a string simply by the spaces between each word within the string. I then want to put these different parts of the string into separate variables. How do I go about doing this? I have the following:
strOperatingSystem = “Microsoft Windows 7 Professional ”
strVendor = “”
strEdition = “”
strTitle = “”
strVersion = “”
I want the result to be.
strVendor = “Microsoft”
strEdition = “Windows”
strTitle = “Professional”
strVersion = “7”
`
Any help would be appreciated.