I have this code to split a string into two halves -

VB Code:
  1. AccountList.ListIndex = 0
  2. emailToUseT.Text = AccountList.List(0)
  3. Temp = Split(emailToUseT.Text, ";")
  4.  
  5. emailT.Text = Temp(0)
  6. 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?