Quote:
Originally Posted by pepak
What my regexp searches for:
- either a space or a >
- apostrophe
- any number of characters (non-greedy - cosume as few as possible)
- any single character except for letters and spaces
- apostrophe
- either a space or a <
|
OK, in VIM that's:
Code:
\([> ]\)'\(.\{-}[^a-z ]\)'\([< ]\)
( \( and \) to group, \{-} for non-greedy multiple match)