regex final word

C++
Just use "$" to specify matching a pattern at the end of each line.
Example with grep:
grep "pattern$" file.txt
Source

Also in C++: