I want to grep the shortest match and the pattern should be something like:

<car ... model=BMW ...>
...
...
...
</car>

... means any character and the input is multiple lines.

link|improve this question

60% accept rate
2  
What language are you using? – Mark Byers Jun 12 '10 at 4:49
feedback

2 Answers

up vote 10 down vote accepted

To get a non-greedy match in regular expressions you need to use the non-greedy modifier ? after the quantifier, for example : .*?.

<car[^>]* model=BMW [^>]*>.*?</car>

You will also need the dot all modifier so that the dot matches new lines.

However it looks suspiciously like you are trying to use regular expressions to parse XML. If your document is in fact XML then you should avoid using regular expressions to do this and instead use an XML parser. If you state what language you are using I can point you towards an appropriate library for that language.

link|improve this answer
"You will also need the dot all modifier so that the dot matches new lines." This answer is the top result for "grep dot all modifier" ... what is it? – eegg Sep 15 '11 at 10:22
eegg: dot all modifier is also known as multiline. It's a modifier that changes the "." match behavior to include newlines (normally it doesn't). There's no such modifier in grep, but there is in pcregrep. – A. Wilson May 7 at 22:01
feedback

Actualy the .*? only works in perl. I am not sure what the equivalent grep extended regexp syntax would be. Fortunately you can use perl syntax with grep so grep -P would work but grep -E which is same as egrep would not work (it would be greedy).

link|improve this answer
+1 Savior! Awesome. Thanks for grep -P – Legend Sep 21 '11 at 8:09
1  
grep -P does not work in GNU grep 2.9 -- just tried it (it doesnt error, just silently doesn't apply the ?. Intertestly neither does the not class eg: env|grep '[^\=]*\=' – roberto tomás Oct 24 '11 at 22:56
pgrep works over here – Christian Apr 23 at 15:51
feedback

Your Answer

 
or
required, but never shown

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