A
Ajit
I have a tab delimited string and i want to split it to read all the values
from the string
I tried multiple way but doesn't work with ASP.Net
i tried
aryData = strData.Split(vbTab)
aryData = strData.Split(Chr(9))
aryData = strData.Split("\t")
aryData = strData.Split(ControlChars.Tab)
but none of them work
any idea why or has anyone done something like this.
I will appreciate if anyone can help me out of this
from the string
I tried multiple way but doesn't work with ASP.Net
i tried
aryData = strData.Split(vbTab)
aryData = strData.Split(Chr(9))
aryData = strData.Split("\t")
aryData = strData.Split(ControlChars.Tab)
but none of them work
any idea why or has anyone done something like this.
I will appreciate if anyone can help me out of this