Wikia

Vim Tips Wiki

Watchlist Recent changes

Match every word except foo

Duplicate tip

This tip is very similar to the following:

These tips need to be merged – see the merge guidelines.

Tip 220 Printable Monobook Previous Next

created February 25, 2002 · complexity intermediate · author Michael Geddes · version 6.0


This is a regular expression that matches all words except 'foo'

\v<(foo>)@!\k+>
  • \v Very magic
  • < Start-of-word
  • (Foo>) The atom 'Foo' followed by end-of-word
  • @! Match (with zero length) when the previous atom doesn't match.
  • \k+ Match one or more Keywords
  • > Match end-of-word.

The non-magic version is:

\<\(foo\>\)\@!\k\+\>

The use of \@! can be very tricky. According to the Vim help files, it is often easier to use \@<! instead. For example, to find all 'bar' strings unless they are part of 'foobar', use the following (non-magic):

\(foo\)\@<!bar

ReferencesEdit

CommentsEdit

Pages on Vim Tips Wiki

Add a Page
1,586pages on
this wiki
Advertisement | Your ad here

Latest Photos

Add a Photo
71photos on this wiki
See more >

Recent Wiki Activity

See more >

Around Wikia's network

Random Wiki