Is it possible to use the value of a regex in the "FIND" part of a find/replace in Notepad++ ?
Here's what i have :
FIND: ^.{105}.*(.)
REPLACE: \r\n
the value to replace is the 106th character in my file. let's say it's an ~
now the find/replace should find & replace all occurrence of ~ and replace all of them by '\r\n' (the ~ represent the end of line character)
It doesn't work, it replace the whole string instead of the 106th char and only replace once instead of multiple time on the file.
The whole purpose of this is to have this set on a hotkeyed macro so it can be done quickly and often.