Hello,
I need to apply some regex on a variable like this : word-number (for example : singer-2152152) and i just want to keep the number (2152152).
I tried the regex [0-9] but i get result like this :
1 2
2 1
3 5
4 2
5 1
6 5
7 2
and not 2152152
Thanks for your help
I need to apply some regex on a variable like this : word-number (for example : singer-2152152) and i just want to keep the number (2152152).
I tried the regex [0-9] but i get result like this :
1 2
2 1
3 5
4 2
5 1
6 5
7 2
and not 2152152
Thanks for your help