Suppose you have this file:
x
a
b
c
x
x
a
b
c
x
x
and you want to find the sequence abc (and select the whole 3 lines) with Notepad++ . How to express the newline in regex, please?
|
Suppose you have this file:
and you want to find the sequence abc (and select the whole 3 lines) with Notepad++ . How to express the newline in regex, please? |
|||
|
|
|
Notepad++ can do that comfortably, you don't even need regexes In the find dialogue box look in the bottom left and switch your search mode to Extended which allows \n etc. As odds on you're working on a file in windows format you'll be looking for \r\n (carriage return, newline)
Will find the pattern over three lines |
|||
|
|
Update 18th June 2012 With the new Notepad++ v6, you can indeed search for newlines with regexes. So you can just use
even with regular expressions to accomplish what you want. Note Unfortunately, you can't do that in Notepad++ when using regex search. Notepad++ is based on the Scintilla editor component, which doesn't handle newlines in regex. You can use extended search for newline searching, but I don't think that will help you search for 3 lines. More info here. Update: Robb and StartClass0830 were right about extended search. It does work, but not when using regular expressions search. |
|||||||||||||||||
|
This will work \x0D is newline and \x0A is carriage return. Assumption is that each line in your file ends with ascii 10 and 13. |
|||
|
|
|
I found a workaround for this.
Simply, in Extended mode replace all |
|||||
|
|
Hmm, too bad that newline is not working with regular expressions. Now I have to go back to Textpad again. :( |
|||||
|
|
In Notepad++ you can also try highlighting the desired part of the text and then pressing CTRL+J. That would justify the text and thus removing all line endings. |
|||
|
|