I have a big HTML file that has lots of markup that looks like this:

<p class="MsoNormal" style="margin: 0in 0in 0pt;">
  <span style="font-size: small; font-family: Times New Roman;">stuff here</span>
</p>

I'm trying to do a Vim search-and-replace to get rid of all class="" and style="" but I'm having trouble making the match ungreedy.

My first attempt was this

%s/style=".*?"//g

but Vim doesn't seem to like the ?. Unfortunately removing the ? makes the match too greedy.

How can I make my match ungreedy?

link|improve this question

I think Paul's answer is good. Just to say that "?" does not mean optional in vim (if this is what you want to achieve using "?") – LB . Aug 20 '09 at 12:37
5  
@LB, in many languages, .*? means match any character but be non-greedy. That's what he is trying to achieve. – Randy Morris Aug 20 '09 at 12:49
feedback

5 Answers

up vote 75 down vote accepted

Instead of .* use .\{-}.

%s/style=".\{-}"//g

Also, see :help non-greedy

link|improve this answer
If :help non-greedy doesn't work, try :help /\{- – Dennis Williamson May 5 at 16:47
feedback

What's wrong with

%s/style="[^"]*"//g
link|improve this answer
Nothing! Nothing at all wrong! :) – Mark Biek Aug 20 '09 at 12:32
Although, for my own benefit, I'd still like to better understand the ungreedy thing. – Mark Biek Aug 20 '09 at 12:33
1  
@Mark, just added a note to my answer about the excellent chapter on regexps that covers this in the book "sed & awk" – Rob Wells Aug 20 '09 at 12:51
feedback

Non greedy search in vim is done using {-} operator. Like this:

%s/style=".\{-}"//g

just try:

:help non-greedy
link|improve this answer
feedback

I've found that a good solution to this type of question is:

:%!sed ...

(or perl if you prefer). IOW, rather than learning vim's regex peculiarities, use a tool you already know. Using perl would make the ? modifier work to ungreedy the match.

link|improve this answer
good point, but being able to do /pattern to check that you're matching the pattern correctly before applying it and using c modifier in your vim regular expression is also nice :) – João Portela Dec 30 '10 at 15:00
feedback

G'day,

Vim's regexp processing is not too brilliant. I've found that the regexp syntax for sed is about the right match for vim's capabilities.

I usually set the search highlighting on (:set hlsearch) and then play with the regexp after entering a slash to enter search mode.

Edit: Mark, that trick to minimise greedy matching is also covered in Dale Dougherty's excellent book "Sed & Awk" (sanitised Amazon link).

Chapter Three "Understanding Regular Expression Syntax" is an excellent intro to the more primitive regexp capabilities involved with sed and awk. Only a short read and highly recommended.

HTH

cheers,

link|improve this answer
1  
Vim's regex processing is actually quite nice. It can do things that sed can't, like match on line/column numbers or match based on per-language classification of characters as keywords or identifiers or whitespace. It also has zero-width assertions and the ability to put expressions in the right side of a replacement. If you use \v it helps clean the syntax up a lot. – Brian Carper Aug 20 '09 at 17:08
@Brian, cheers. I'll do a help regex and see what I've been missing. – Rob Wells Aug 20 '09 at 18:22
feedback

Your Answer

 
or
required, but never shown

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