I have this code to split a string into two halves -
VB Code:
AccountList.ListIndex = 0 emailToUseT.Text = AccountList.List(0) Temp = Split(emailToUseT.Text, ";") emailT.Text = Temp(0) passwordT.Text = Temp(1)![]()
Assume I have this text in a form:
hello{sep}goodbye{sep}webstring
or
hello;goodbye;webstring
Would obviously turn into:
hello
goodbye
webstring
How would I split three strings like this?




Reply With Quote