re.match tries to match the pattern at the start of the string.
You are looking for re.search, re.findall or re.finditer
re.match tries to match the pattern at the start of the string.
You are looking for re.search, re.findall or re.finditer