match a whole word in regex code example
Example 1: match first word regex
Just use "^" to specify matching a pattern at the beginning of each line.
Example with grep:
grep "^pattern" file.txt
Example 2: Regular expression: Match everything after a particular word
re.search(r'(?<=test :)[^.\s]*',text)