Just to preface, I have read many of the questions regarding this, but I couldn't find an answer (at least in my digging). Feel free to point it out if I did miss it!
I know how to use a regex, and in fact I am finding the text I am searching for. However, when I try to do as other questions suggested "\1MyAppendedTextHere"
and replace, it just erases the matched pattern and adds what follows the \1
. (Previous questions I looked up stated that the "\1"
was how notepad++ did this). Has this changed? Am I doing something wrong?
Here is what it looks like:
find: name[A-Z_0-9]+
replace: \1_SUFFIX
Any help is appreciated!