Hello, I have no idea what i can call this because i have never really worked with anything liek this before.
So if i wanted to say something like
if the textbox1.text starts with "SendNumber(" then
grab the string inside the paranthesis ( and ) then
save it to a variable
end if
Usage:
In my textbox1.text i can have:
then it will AppendText to my RichTextBox saying the string inside my two (paranthesis)
So, it would AppendText to my richtextbox like this:
How can i do this?:D
So if i wanted to say something like
if the textbox1.text starts with "SendNumber(" then
grab the string inside the paranthesis ( and ) then
save it to a variable
end if
Usage:
In my textbox1.text i can have:
Code:
SendNumber(1234);
So, it would AppendText to my richtextbox like this:
Code:
1234
How can i do this?:D