answersLogoWhite

0


Best Answer

Apparently, this may be a bug. See:

http://bugs.emeraldeditor.com/showreport.php?bugid=76

Ran into it myself when I need to replace ",\s" with ",\r\n". A Google search comes up with the bug report above.

The work around I have to do is to record the replacement as a macro, then run the macro repeatedly over the file.

Hope this helps!

User Avatar

Wiki User

15y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the regex for return or newline in Crimson Editor Neither slash-r nor slash-n work?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How many pages does Return of the Crimson Guard have?

Return of the Crimson Guard has 743 pages.


When was Return of the Crimson Guard created?

Return of the Crimson Guard was created in 2008-05.


What is the difference between line feed and carriage return?

Line Feed '\n' takes the cursor to newline but does not take it to the beginning. Wheareas the Carriage Return '\r' does just the opposite. The combination '\r\n' is used as EOF (End Of File). Note: Mac uses '\r' for Newline whereas Unix use '\n'.


How newline formed?

The newline or line-feed character is denoted by ASCII code 0x0A (decimal 10). In C, we use the escape-sequence '\n' to denote a new line. In some cases, particularly where the output is directed to a line printer, a newline is immediately preceded by a carriage return character, 0x0D (13 decimal), which is denoted by the escape sequence '\r' in C. Thus you will often encounter the "\r\n" escape sequence at the end of each line of ASCII text.


How newline character formed?

The newline or line-feed character is denoted by ASCII code 0x0A (decimal 10). In C, we use the escape-sequence '\n' to denote a new line. In some cases, particularly where the output is directed to a line printer, a newline is immediately preceded by a carriage return character, 0x0D (13 decimal), which is denoted by the escape sequence '\r' in C. Thus you will often encounter the "\r\n" escape sequence at the end of each line of ASCII text.


How do you make a roller coaster go up on no limits simulation?

In the Editor, select segment and click on Lift. Then return to the editor and create your own hill.


What is the difference between read and readline in java?

It depends on the context, but generally read() will return a single byte of data from a Reader or InputStream, while readLine() will read characters from a Reader until a newline is found. and this method is deprecated now.and this is a method of DataInputStram class


When does The Mentalist return to T.V.?

The Mentalist comes back to TV on February 10, 2009, with the episode "Crimson Casanova". It will be shown on CBS at 9:00 PM.


How do you print characters up and down in c plus plus vs. side to side?

Place a newline (linefeed) character ('\n') after each character you print. Depending on the device you may need a carriage return as well ('\r'). Usually the carriage return comes before the linefeed, but can often be treated as a string of two characters ("\r\n").


What groups of white southerners neither wanted slaves or to have them in their area?

to return power to the white democrats


Is Orlando Bloom going to be in Pirates of the Caribbean 4?

No, neither he nor Keira Knightly are scheduled to return.


Write down a simple Hello World Program in C?

// HelloWorld.c #include <stdio.h> // standard I/O (input/output) // so that we can use printf int main () { printf("Hello, World!\n); // that "\n" just means newline return (0); // Everything went OK, 0 means sucessful }