You can parse character delimited strings using the String.Split() method.
Here is a
VB.NET sample:
Dim myString As String
Dim myStringArray() As String
myString = "nacy,jack,tom,cat"
myStringArray = myString.Split(","c)
Now you can iterate thru the elements of the array and do whatever you like with each value.
-
Peter