import re

m = re.search(r'\b\d+ ?m(?:ins)?\b', 'See you in 2 mins or sooner')
if m:
    print(m[0])