How do I split a string in Visual Basic .NET?
Use the Split method on the string object. Something like:
As String = YourString.Split(Chr(Asc(",")))

This was first published in October 2004