Lets say I have a string with someone's whole name in it, and i wanted to extract each name into seperate strings. For example, "John William Dubois" into three strings: "John", "William", and "Dubois". What functions would I use? I assume I would use a for loop to search for the spaces, and use the location of the spaces to tell a functionthe begining and end of each new string, but I don't know what function(s) I would use to extract that part of a string into a new string. Well, thanks for any and all help!!! :-)