vote up 2 vote down star

I tried the following code unsuccessfully

:%s/{car,beatles}/mas/g

How can I replace car and beatles with mas in Vim with a single command?

flag

1 Answer

vote up 9 vote down check

This should work:

:%s/\(car\|beatles\)/mas/g
link|flag

Your Answer

Get an OpenID
or

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