regex string first character code example
Example 1: regex for first three characters
^.{0,3}
.{0,3}$
Example 2: regex first in line
Just use "^" to specify matching a pattern at the beginning of each line.
Example with grep:
grep "^pattern" file.txt