I\'m using Python to search some words (also multi-token) in a description (string).
To do that I\'m using a regex like this
result = re.search(w
Try this regex: ((?:[a-z,]+\s+){0,2})here is\s+((?:[a-z,]+\s*){0,2})
((?:[a-z,]+\s+){0,2})here is\s+((?:[a-z,]+\s*){0,2})
with re.findall and re.IGNORECASE set
re.findall
re.IGNORECASE
Demo