I have a list of names with scores in lstInput (a listbox) that looks something like this:
Name1,100,200,300
Name2,100,200,300
Name3,100,200,300
...etc...
I need to split the array into a string and print the results of the person's name and the scores that are separated by a comma.
What I have so far is the following:
For s As Integer = 0 To lstInput.Items.Count - 1
lstOutput.Items.Add(lstInput.Items(s))
Next
Now, that displays the entire list, but I need to split the list into strings so that they display on their own: e.g. Name1 100 200 300
...etc..