How do I extract all the numbers after this ">" on my regex expression.
<sbs-test-2/sba>15
15 can change like a random number.
Thank you!!!
I tried this way, but doesn't get me much!
(< tzdxtext>)(\d\d)
How do I extract all the numbers after this ">" on my regex expression.
<sbs-test-2/sba>15
15 can change like a random number.
Thank you!!!
I tried this way, but doesn't get me much!
(< tzdxtext>)(\d\d)
Thank you all for your quick response!!!!
15 is the result i'm looking for. (15 is just an example, but it's only numbers)
"<sbs-test-2/sba
>15" this the entire string.
@Aleks Andreev, thank you! >\d+$ works!!!
@derpirscher, @Mong Zhu and @Broots Waymb Thank you! problem solved!