Can any one help me to understand the difference between two approaches to regular expressions, with some suitable examples?
- greedy
- non-greedy
Thanks
|
|
Chekout http://www.regular-expressions.info/repeat.html. Basically greediness refers to the quantity of times the regex engine will try to match certain set of characters. The way to state the "greediness" of a regex expression is using the special characters Consider
Matching these regex against str will result in: r1 matching "asdfasdf b bbb" (non-greedy, tries to match b just once) As regex are means to represent char patterns and match specific segments of strings, it's not like greediness it's a matter of approach, you'll sometimes need to match three times foo( |
||||
|
|
|
In greedy approach regex pattern tend to consume maximum characters in a source string.For example
Here
|
||||
|
|
|
|||||||||
|