- findall
findall
examples/regex/findall.py
import re line1 = 'There is a phone number 12345 in this row and another 42 number' numbers1 = re.findall(r'\d+', line1) print(numbers1) # ['12345', '42'] line2 = 'There are no numbers in this row. Not even one.' numbers2 = re.findall(r'\d+', line2) print(numbers2) # []
re.findall returns the matched substrings.