Find the specific word in notpad++
-
hi guys i have list for example
Ali123
A1234
Ali123.
Ali123123
Ali123456
David123i want notpad find just (any word +123)
the result this:
Ali123
David123but notpad find all 123 in show result sorry my english bad i hope anyone help me
-
-
Hi @Dark-Light
You can also try;
(?<=[A-Z])123$
Please, do not forget to select “Regular expression” in Search Mode
Regards.
Hüseyin Çağlar -
I misread the problem statement; @Silent_Macjedi 's answer is more accurate for the stated need than mine, please use that.