[Solved] Regular expression to match last 3 letter pattern in a string


Assuming you only want to match letters:

d[a-zA-Z]{2}$

or

d[a-zA-Z]{2}\b

Depending if you want to match strings (first example) or words (second).

0

solved Regular expression to match last 3 letter pattern in a string