I am using Python and would like to match all the words after test till a period (full-stop) or space is encountered.
test
text = \"test : match this
Everything after test, including test
test.*
Everything after test, without test
(?<=test).*
Example here on regexr.com