Dear VB Elite,

I have a string with the contents "0001, Smith, Jessica, F, 9/16/1982"

How can I split the string up where the commas are and store each entry (0001, Smith, etc) in a different string.

EX: I want it to split the string "0001, Smith, Jessica, F, 9/16/1982" into 5 new string of "00001" and "Smith" and "Jessica" and "F" and "9/16/1982"

I am doing this with one big text file and I need to do that same thing for each line.

Thank you so much for reading this post!!