Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm looking for an open-source text editor which allows cross-line regular expression search and replace.

Thus, for example replacing \n with \n-------------------\n , and so introduce a dashed line between lines.

Or I could search for 08\nERROR and find

INFO 9329 21 June 2008
ERROR 3832 21 June 2008

UltraEdit has this feature, but that is a commercial product. I checked Notepad++, CrimsonEdit, etc., and did not find the cross-line search-and-replace.

share|improve this question

2 Answers

Vim knows how to do this.

for instance, if you have:

if (a) {
    x++;
} else {
    x--;
}

then searching with /;\n.*else will find this:

       ;
} else

and doing this replace: :s/;\n\(.*else\)/;\r//----\r\1/ will do:

if (a) {
    x++;
----
} else {
    x--;
}

(Note that I searched for the newline with \n but had to use \r in the replacement field)

Naturally, this will also work with your examples:

search for 08\nERROR and find:

                    08
ERROR
share|improve this answer
Thanks, learning vim is useful. I tried this successfully. I have to admit I prefer GUI editors -- non-1337 though that is. – Joshua Fox Apr 22 '09 at 6:59
This works on gvim as well. That is vim with a gui – Nathan Fellman Apr 22 '09 at 7:54
up vote 0 down vote accepted

At the time of writing, Notepad++ did not support this -- but the latest version now does!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.