Dim str As String = "12,34,56789,10"
msgbox(str.split(",").length)
For Each s As String In Str.split(",")
msgbox(s)
Next