could someone explain these 2 terms in a understandable way?
feedback
|
|
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
You may think that Making it lazy ( I'd encourage you to download RegExr, a great tool that will help you explore Regular Expressions - I use it all the time. | |||||||||
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:
and this expression:
A greedy match will match the whole string, and a lazy match will match just the first | |||||||
|
feedback
|
|
Greedy means match longest possible string. Lazy means match shortest possible string. For example, the greedy | |||
|
feedback
|
|
From Regular expression
| |||
|
feedback
|
| ||||
|
feedback
|