Looking for a regex to get the number from a string.
My string could be:
abcd1
abcd01
abcd11
I tried this but it is not working: /\d+$/ and some others but they are not seems to be correct.
Is there any easy way to get the number from a string? ANd it will be at the end.