I am quite new to python and regex (regex newbie here), and I have the following simple string:
s=r\"\"\"99-my-name-is-John-Smith-6376827-%^-1-2-767980716\"\
Use the below regex
\d+$
$ depicts the end of string..
$
\d is a digit
\d
+ matches the preceding character 1 to many times
+