Android Question (Solved)don't take the initial 2 characters of textbox1.text

f0raster0

Well-Known Member
Licensed User
Longtime User
Hi all,

I have a TextBox with information like:

TextBox1.Text = "en4D689A13"

How can I take only the data after "en".
I need only: 4D689A13

thank you
 

josejad

Expert
Licensed User
Longtime User
Take a look to "Substring"

B4X:
"en4D689A13".SubString(2) 'returns "4D689A13"
 
Upvote 0
Cookies are required to use this site. You must accept them to continue using the site. Learn more…