vote up 6 vote down star

In Emacs, I tried to replace a character say ";" with a new line using replace-string and/or replace-regexp.

Below commands are what I have tried.

M-x replace-string ; \n   (will replace ";" with 2 characters "\n" )

M-x replace-regex ; \n ( get below error from minibuffer )

Invalid use of `\' in replacement text.

Is there anything wrong using replace-string. Or if there is any other way to do that? Thanks.

flag

2 Answers

vote up 18 vote down check
M-x replace-string ; C-q C-j

C-q for quoted-insert

C-j is a newline.

Cheers!

link|flag
C-q is really quote-insert which quotes the next character. – Joe Casadonte Mar 5 at 2:17
I believe it's actually "quoted" rather than "quote", as in "quoted-insert". At least that's the way it is on version 22.1. – Bryan Oakley Mar 5 at 15:50
yes, you're right. fixed. – jrockway Mar 5 at 19:40
Whups! Thanks guys – Jonathan Arkell Mar 11 at 21:53
vote up 1 vote down

Don't forget that you can always cut and paste into the minibuffer.

So you can just copy a newline character (or any string) from your buffer, then yank it when prompted for the replacement text.

link|flag
It's really a good idea for the characters which I don't know the key bind. – Lei Mar 5 at 18:16

Your Answer

Get an OpenID
or

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