Just use "^" to specify matching a pattern at the beginning of each line.
Example with grep:
grep "^pattern" file.txt
Start of String or Line: ^
By default, the ^ anchor specifies that the following pattern must begin
at the first character position of the string.