I am trying to separate the characters of string.
Dim res As String
res = "1+2+3+4+")
tempArr = Regex.split("\+", res)
I am using this code to convert the string into array.Is it correct ? and also i need to know the count of the array. How it possible to get the count of the array ?