regex tudo começando com
#check if word starts with "test"
^test.*$
Evolcon
#check if word starts with "test"
^test.*$
Just use "^" to specify matching a pattern at the beginning of each line.
Example with grep:
grep "^pattern" file.txt