fork download
  1. import re
  2. m = re.search(r'\d{3,}\s+[^\d\s]','12232 1111')
  3. if m:
  4. print(m.group())
  5. else:
  6. print("No match!")
Success #stdin #stdout 0s 23304KB
stdin
Standard input is empty
stdout
No match!