regex match word code example
Example 1: regex for entire word
/\b(word)\b/i
Example 2: match first word regex
Just use "^" to specify matching a pattern at the beginning of each line.
Example with grep:
grep "^pattern" file.txt
/\b(word)\b/i
Just use "^" to specify matching a pattern at the beginning of each line.
Example with grep:
grep "^pattern" file.txt