vote up 6 vote down star

in vi, search and replace, how do you escape a '/' (forward slash) so that it is correct. Say in a path.

like: /Users/tom/documents/pdfs/

:%s//Users/tom/documents/pdfs//<new text>/g  --FAILS (obviously)

:%s/\/Users/tom/documents/pdfs\//<new text>/g -- FAILS with a trailing error

:%s/'/Users/tom/documents/pdfs/'/<new text>/g -- FAILS with a trailing error

What am I missing?

flag

60% accept rate

3 Answers

vote up 10 vote down check

You need to escape the forward slashes internally, too.

:%s/\/Users\/tom\/documents\/pdfs\//<new text>/g
link|flag
@Sarah - Doh! Yes, thank you! – JT Nov 6 at 0:36
vote up 4 vote down

As Sarah suggested, you need to escape ALL forward slashes.

You could instead use another character besides forward-slash as the delimiter. This is handy if your search string has a lot of slashes in it.

:%s#/Users/tom/documents/pdfs/#<new test>#g

This works perfectly in vim. I'm not 100% sure about vanilla vi.

link|flag
I can't think of how you'd even get at vi these days. I was thinking most major Linux distros just redirect 'vi' to vim with lots of features turned off. – Sarah Vessels Nov 6 at 0:38
1  
Because linux isn't the only os :) Many of the BSDs ship with vanilla vi or nvi Most of the commercial unix systems do as well. I remember (unhappily) the days of having to compile vim on IRIX because I couldn't live with vanilla vi. – Bob Nov 6 at 0:41
Not too long ago Debian linked vi to nvi, as did NetBSD, FreeBSD, and OpenBSD. Some also shipped with vim-as-vim. – DigitalRoss Nov 6 at 0:45
vote up 16 vote down

Alternatively you can do :%s,foo/bar/baz,foo/bar/boz,g - I almost never use slashes because of the escaping confusion.

link|flag
Dude, I didn't know about that! I'm guessing you could use any character to delimit the fields then? – Sarah Vessels Nov 6 at 0:36
Yeah I believe so, I just got accustomed to commas. – meder Nov 6 at 0:37
You beat me by a few seconds :) – Bob Nov 6 at 0:37
1  
Nice tip! You can also save yourself the repetition with the n flag, which does the search without the replace. e.g. :%s,foo/bar/baz,,gn – nelstrom Nov 6 at 15:56
Didn't know that it will work commas. I got accustomed to %s:old/old:/old/new:g – vbd Nov 12 at 10:27

Your Answer

Get an OpenID
or

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