fork download
  1. import re
  2. m='5167170011843850 1234 745'
  3. print(re.findall(r"\b\d{3,4}\b", m))
Success #stdin #stdout 0.03s 9592KB
stdin
Standard input is empty
stdout
['1234', '745']