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.