How can I find/replace all CRLF characters in notepad++? Looking for something equivalent to the ^p special character in Word.
|
|
|
|
|
|
|
[\r\n]+ should work too Actually no, it does not seem to work with regexp... But if you have notepad++ 5.x, you can use the 'extended' search mode and look for \r\n. That does find all your CRLF. (I realize this is the same answer than the others, but again, 'extended mode' is only available with Notepad++4.9, 5.x and more) |
|||
|
|
|
It appears that this is a FAQ, and the resolution offered is:
|
||
|
|
|
On the Replace dialog, you want to set the search mode to "Extended". Normal or Regular Expression modes wont work. Then just find "\r\n" (or just \n for unix files or just \r for mac format files), and set the replace to whatever you want. |
||
|
|
|
|
Assuming it has a "regular expressions" search, look for \r\n. I prefer \r?\n, because some files don't use carriage returns. EDIT: Thanks for the feedback, whoever voted this down. I have learned that... well, nothing, because you provided no feedback. Why is this wrong? |
|||
|
|
|
|
I've not had much luck with \r\n regular expressions from the find/replace window. However, this works in Notepad++ v4.1.2:
Now you should be able to count, find, or replace as desired. |
||
|
|
|
|
Use the advanced search option (ctrl-R) and use the keyboard shortcut for CRLF (ctrl-M) to insert a carriage return. |
|||
|
|
