f0raster0 Well-Known Member Licensed User Longtime User Jan 23, 2019 #1 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
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
M Mahares Expert Licensed User Longtime User Jan 23, 2019 #2 f0raster0 said: I need only: 4D689A13 Click to expand... Use the Substring function: B4X: EditText1.Text=EditText1.Text.SubString(2) Upvote 0
f0raster0 said: I need only: 4D689A13 Click to expand... Use the Substring function: B4X: EditText1.Text=EditText1.Text.SubString(2)
josejad Expert Licensed User Longtime User Jan 23, 2019 #3 Take a look to "Substring" B4X: "en4D689A13".SubString(2) 'returns "4D689A13" Upvote 0