could someone explain these 2 terms in a understandable way?

link|improve this question

feedback

5 Answers

up vote 6 down vote accepted

Greedy will consume as much as possible. From http://www.regular-expressions.info/repeat.html we see the example of trying to match HTML tags with <.+>. Suppose you have the following:

<em>Hello World</em>

You may think that <.+> (. means anything and + means repeated) would only match the <em> and the </em>, when in reality it will be very greedy, and go from the first < to the last >. This means it will match <em>Hello World</em> instead of what you wanted.

Making it lazy (<.+?>) will prevent this. By adding the ? after the +, we tell it to repeat as few times as possible, so the first > it comes across, is where we want to stop the matching.

I'd encourage you to download RegExr, a great tool that will help you explore Regular Expressions - I use it all the time.

link|improve this answer
so if you use greedy will u have 3 (1 element + 2 tags) matches or just 1 match (1 element)? – ajsie Feb 20 '10 at 6:27
1  
It would match only 1 time, starting from the first < and ending with the last >. – Jonathan Sampson Feb 20 '10 at 6:28
But making it lazy would match twice, giving us both the opening and closing tag, ignoring the text in between (since it doesn't fit the expression). – Jonathan Sampson Feb 20 '10 at 6:29
feedback

Greedy means your expression will match as large a group as possible, lazy means it will match the smallest group possible. For this string:

abcdefghijklmc

and this expression:

a.*c

A greedy match will match the whole string, and a lazy match will match just the first abc.

link|improve this answer
Did you mean a.*c? – Laurence Gonsalves Feb 20 '10 at 6:28
@Laurence, yup. – Carl Norum Feb 20 '10 at 6:30
feedback

Greedy means match longest possible string.

Lazy means match shortest possible string.

For example, the greedy h.+l matches 'hell' in 'hello' but the lazy h.+?l matches 'hel'.

link|improve this answer
i got it now! excellent! – ajsie Feb 20 '10 at 6:28
feedback

From Regular expression

The standard quantifiers in regular expressions are greedy, meaning they match as much as they can, only giving back as necessary to match the remainder of the regex.

By using a lazy quantifier, the expression tries the minimal match first.

link|improve this answer
feedback
Для <em>Hello World</em>:
/(?<=<em>).+(?=<\/em>)/
Результат Hello World
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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