I have a RegEx search strategy which looks like this: ^\d{4}\t
I.e. search for lines beginning with 4 digits followed by a tab for which I would like to replace with those same 4 digits that were found but also adding “.00” to the end of those 4 digits.
I don’t know how in the “Replace with:” entry box to enter something that it recognise the need to replace with what was found?
@Jignesh_Sutar the search and replace uses a Python engine, so for using the found results in the replace value you will have to use \1 syntax. I currently have a issue open so it will also support the $1 syntax.