I have a string 17:55:88
I want to split this up into the three sections and store them in varibles.
IE I would like to have the 88 stored in a varible the 55 in a varible and the 17 in a varible.
the following code does what i want, but i dont know how to put the results into their own varibles.
if someone could help thats would be most helpfull
Dim words As String() = _INTime.Split(New Char() {":"c})
' Use For Each loop over words and display them
Dim word As String
For Each word In words
MsgBox(word)
Next
or if you can think of a better way to split this string please let me know.