text after Name=

VB2012

New member
Joined
Feb 5, 2012
Messages
1
Programming Experience
5-10


I want the professionals VB.NET help me in this:

1143121185.png

How Get from TextBox1 the text after Name=

+ It's Variable

To the TextBox2

:culpability:



 

Attachments

  • proiey.png
    proiey.png
    2.6 KB · Views: 33
Hello, you could do it this way:

If TextBox1.Text.Contains("Name=") Then

TextBox2.Text = TextBox1.Text.Split("=")(1)

End If
 
Last edited:
Back
Top