Can someone explain me what is the difference between [0-9]+ and [0-9]++?
|
The PCRE engine, which PHP uses for regular expressions, supports "possessive quantifiers":
And:
The difference is thus:
This snippet visualises the difference when in greedy-by-default mode. Note that the first snippet is functionally the same as the last, because the additional This snippet visualises the difference when applying PCRE_UNGREEDY (ungreedy-by-default mode). See how the default is reversed. |
|||||||||||||
|
|
Both Example:
matches the string In the first case, Not all regex flavors support this syntax; some others implement atomic groups instead (or even both). |
||||
|
|

++in regex, and it seems plenty of others haven't either, but a bit of digging does show that it is valid. – Spudley May 31 '11 at 11:10