vote up 2 vote down star

I would like to replace forward slaches to backslashes in emacs lisp. If I use this :

(replace-regexp-in-string "\/" "\\" path))

I get an error.

(error "Invalid use of `\\' in replacement text")

So how to represent the backslash in the second regexp?

flag

4 Answers

vote up 6 vote down check

What you are seeing in "C:\\foo\\bar" is the textual representation of the string "C:\foo\bar", with escaped backslashes for further processing.

For example, if you make a string of length 1 with the backslash character:

(make-string 1 ?\\)

you get the following response (e.g. in the minibuffer, when you evaluate the above with C-x C-e):

"\\"

Another way to get what you want is to switch the "literal" flag on:

(replace-regexp-in-string "/" "\\" path t t)

By the way, you don't need to escape the slash.

link|flag
vote up 0 vote down

Try using the regexp-quote function, like so:

(replace-regexp-in-string "/" (regexp-quote "\\") "this/is//a/test")

regexp-quote's documentation reads

(regexp-quote string) Return a regexp string which matches exactly string and nothing else.

link|flag
Not to rain on your parade but this answer was given up in the comments of the 2nd answer. – seth Jun 24 at 19:53
Oops, missed that. Thank you. – jlf Jun 24 at 20:23
vote up 0 vote down

Don't use emacs but I guess it supports some form of specifying unicode via \x

e.g. maybe this works

(replace-regexp-in-string "\x005c" "\x005f" path))

or

(replace-regexp-in-string "\u005c" "\u005f" path))
link|flag
No, unicode is represented by \uXXXX or \u00XXXXXX. – Svante Jun 24 at 11:16
um ok then switch to \u005c and \u005f? not? – jitter Jun 24 at 11:42
vote up 4 vote down

Does it need to be double-escaped?

i.e.

(replace-regexp-in-string "\/" "\\\\" path)
link|flag
No, I have tried that already : C:/foo/bar becomes C:\\foo\\bar... – Peter Jun 24 at 10:35
Have you tried \\\ too? – schnaader Jun 24 at 10:38
yep :-) but that's a syntax error (the last quote is escaped than) – Peter Jun 24 at 10:41
5  
Double-escaped, ie. 4 consecutive backslashes do work. The reason you see 2 consecutive backslashes in the result is that they are escaped in the string. If you try to output the string again, it will look correct. – Lars Haugseth Jun 24 at 11:08
2  
You can also write it like this for better readability: (replace-regexp-in-string "/" (regexp-quote "\\") path) – Lars Haugseth Jun 24 at 11:09
show 2 more comments

Your Answer

Get an OpenID
or

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