regex last word in line code example
Example: regex final word
Just use "$" to specify matching a pattern at the end of each line.
Example with grep:
grep "pattern$" file.txt
Just use "$" to specify matching a pattern at the end of each line.
Example with grep:
grep "pattern$" file.txt