vim Regular expressions Word

30% OFF - 9th Anniversary discount on Entity Framework Extensions until December 15 with code: ZZZANNIVERSARY9

Example

Vim has special operators to match word beginning, word, end, and so forth.\< represents the beginning of a word and \> represents the end of a word.

Searching for /\<foo\> in the following text will only return the last foo.

football is not foolish foo



Got any vim Question?