Can anyone explain me, step by step, why the regex fails with this:
<.++>
with this string to compare: <em>
The same string is found with lazy or greedy quantifiers but in this case what steps are involved?
I use Java regex flavor.
|
|
From the Java
In your example, the If the quantifier were greedy, i.e. if it were EDIT: A lazy quantifier would work like a greedy quantifier in reverse. Instead of starting by trying to match the whole rest of the string and backing off character by character, the lazy quantifier would start by trying to match a single character, in this case just |
|||||||||||
|
|
Possessive quantifier prevents backtracking - thus Hence the last
|
||||
|
|
On greedy variantFirst let's consider how a pattern like
On reluctant variantBy contrast, this is how
On negated character class and possessive quantifiers comboNote that in either of the above cases,
A pattern that at least has a chance to match is
As much as is practical, you should refrain from using Whenever applicable, you should use negated character class instead of regular-expressions.info
Related questions
|
|||
|
|