Hello, what I need help with is probably simple for most of you fluent with vb.net, I have been learning for the last 6 months.
What I am trying to do here is search a multi-line textbox that contains the source of a particular website.
what I would like is something like this but i do not know how to right it like i need
this function works fine only when you define len.
what I need is a function that will do something like this,
"note obviously interpreted code"
I am quite sure you can figure out what i want from there,
I do not want anything like,
remove "<>?|\?()}{][" etc. please
What I am trying to do here is search a multi-line textbox that contains the source of a particular website.
what I would like is something like this but i do not know how to right it like i need
Code:
Dim MyString, FirstWord, LastWord, MidWords As String MyString = "Mid Function Demo" ' would be the textbox FirstWord = Mid(MyString, 1, 3) ' Returns "Mid". LastWord = Mid(MyString, 14, 4) ' Returns "Demo". MidWords = Mid(MyString, 5) ' Returns "Function Demo".
what I need is a function that will do something like this,
"note obviously interpreted code"
Code:
Dim text, A,B,C as string text = textbox1 A = "<body>" B = "information between A and C being of variable len" C = "</body>" textbox2 = B
I do not want anything like,
remove "<>?|\?()}{][" etc. please
Comment