Example: https://regex101.com/r/n4x91E/1
INPUT STRING :
"I think we have to point certain things out to this man, and after that point some other things out to him as well"
MY REGULAR EXPRESSION :
(point).*(out)
RETURNING WRONG RESULT :
"I think we have to point certain things out to this man, and after that point some other things out
to him as well"
EXPECTING RESULT :
"I think we have to point certain things out
to this man, and after that point some other things out to him as well"
How to change my regular expression to get the first groups occurrence ?