I am copy-pasting an example from a PDF to Vim and I have to replace all and with " and all and with ' so that the code works.

Well that will probably seem easier to understand: I want to replace all foo and bar with foobar simultaneously.

link|improve this question

PDF… outputted by PDFLaTeX with code verbatim sections I presume? – Benoit Nov 17 '11 at 8:21
Probably. I don't have the latex code itself, just the pdf. – Dimitar Slavchev Nov 17 '11 at 12:18
feedback

3 Answers

up vote 5 down vote accepted

Try this in vi:

:1,$s/[“”]/"/g

then

:1,$s/[‘’]/'/g
link|improve this answer
Thanks. You could replace 1,$ with % . How can I make it to work with hole words rather than characters ? – Dimitar Slavchev Nov 17 '11 at 12:20
@Dimitar Slavchev: :%s/\<\(foo\|bar\)\>/foobar/g (see :help pattern) : \<\> delimit a word and \(\|\) are an alternation (with capture here) – Benoit Nov 17 '11 at 13:00
feedback

Use tr as a filter:

Unix way:

:%!tr “”‘’ \"\"\'\'
link|improve this answer
feedback

If you want to replace all "foo"s and all "bar"s with "foobar" you can use this:

%s/\v<(foo|bar)>/foobar/g

This will replace the "foo"s and the "bar"s but will leave any "foobar"s alone.

  • %s/ - substitute across the whole file
  • \v - use very magic regex syntax (see :help magic for more info)
  • < - match a left word boundary
  • (foo|bar) - foo or bar
  • > - match a right word boundary
  • /foobar/ - replacement string
  • g - globally (will happen for every occurrence, not just the first on the line)

Note that if you are just dealing with punctuation you'll probably want to remove the word boundary parts of this regex or it won't work.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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