VB.Net Split A Group Of Text

Posted by Ben on Stack Overflow See other posts from Stack Overflow or by Ben
Published on 2010-05-19T14:15:39Z Indexed on 2010/05/19 14:30 UTC
Read the original article Hit count: 200

I am looking to split up multiple lines of text to single them out, for example:

 Url/Host:ftp://server.com/1
 Login:Admin1 
 Password:Password1

 Url/Host:ftp://server.com/2
 Login:Admin2 
 Password:Password2

 Url/Host:ftp://server.com/3
 Login:Admin3 
 Password:Password3

How can I split each section into a different textbox, so that section one would be put into TextBox1.Text on its own:

 Url/Host:ftp://server.com/1
 Login:Admin1 
 Password:Password1

Thanks in advance :)!

© Stack Overflow or respective owner

Related posts about vb.net

Related posts about split