How can I find/replace all CRLF characters in notepad++? Looking for something equivalent to the ^p special character in Word.
|
feedback
|
|
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 (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) Since April 2009, you have a wiki article on the Notepad++ site on this topic: Some relevant extracts includes the following search processes:
The same wiki also mentions the Hex editor alternative:
| |||||||||||
feedback
|
|
It appears that this is a FAQ, and the resolution offered is:
| |||||||
feedback
|
|
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. | |||
|
feedback
|
|
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? | |||||||
feedback
|
|
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. | |||
|
feedback
|
|
Use the advanced search option (ctrl-R) and use the keyboard shortcut for CRLF (ctrl-M) to insert a carriage return. | ||||
|
feedback
|
|
Just to build a little on what 'thenonhacker' was mentioning. We use ULtraEdit-32 on the job, and working with EDI files (x.12), we often have to wrap or unwrap data. The 2 most common Search & Replace strings are "^p" & "~". going one way will replace the "~" with a CR/LF for easier reading of each segment. Going the other way puts the file back into the format the EDI translator needs. For lazy people like myself, I just have those map'd to keys for easy of use. | |||
|
feedback
|
|
The way I found it to work is by using the Replace function, and using "\n", with the "Extended" mode. I'm using version 5.8.5. | |||
|
feedback
|
|
More information on this reg exp bug on the notepad++ wiki: http://sourceforge.net/apps/mediawiki/notepad-plus/index.php?title=Replacing_Newlines | |||
|
feedback
|
|
| |||
|
feedback
|
CTRL+H, select "Search Mode: Regular Expression". "Find What: $" and "Replace with : \r". Copy paste the content into Notepad or save it to disc. – Guru Jan 21 at 1:47