Click here to Skip to main content
15,896,154 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi all i try to past IP in 1 textbox and when i press OK he mus split in 4 pices like that
123.123.123.123 and split in textbox1,2,3,4 like [123] [123] [123] [123] all is ok but if i put more numbers 123.123.123.123.123.123.123 i get errors can you hel me please ?

Dim str As String = TextBox1.Text
Dim splitStr As String() = str.Split(".")
TextBox1.Text = splitStr(0).ToString()
TextBox2.Text = splitStr(1).ToString()
TextBox3.Text = splitStr(2).ToString()
TextBox4.Text = splitStr(3).ToString()
Posted
Updated 20-Feb-13 9:21am
v3
Comments
Sergey Alexandrovich Kryukov 20-Feb-13 14:15pm    
Errors (compilation) or exception? What was actually in str. It could be not what you expected...
—SA

1 solution

Should be:
VB
Dim splitStr As String() = str.Split(New Char() {"."C})


—SA
 
Share this answer
 
v5

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900