I\'m having trouble matching a digit in a string with Python. While it should be clearly matched, It doesn\'t even match [0-9] [\\d] or just
[0-9]
[\\d]
re.match is "anchored" to the beginning of the string. Use re.search.
re.match
re.search