For instance I am looking for something in a bigger text file - very simple for example a string of three digits with \d{3}
. What I want to do is: when notepad++/textpad has found the first matching string in a line (and has replaced it with something else) it should jump immediately into the next line.
How can I accomplish that?
I tried \r\n
, but in this case textpad finds not the first string with three digits in the line, but always the last. And notepad++ doesn't find anything at all.
I cannot use ^
either because there are some random words (one, two, three or even foru or five) before the digits I try to find and replace.
Thanks for any help.