Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can someone explain me what is the difference between [0-9]+ and [0-9]++?

share|improve this question
2  
This isn't quite a duplicate, but should answer the question: stackoverflow.com/questions/4489551/… – Spudley May 31 '11 at 11:06
I've never heard of ++ 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
2  
Don't write "solved" in titles. Accept an answer. – Lightness Races in Orbit May 31 '11 at 11:15
1  
How to accept an answer – Daniel Hilgarth May 31 '11 at 11:15
1  
I had to wait a few minutes. – user557108 May 31 '11 at 11:17
show 2 more comments

2 Answers

up vote 14 down vote accepted

The PCRE engine, which PHP uses for regular expressions, supports "possessive quantifiers":

Quantifiers followed by + are "possessive". They eat as many characters as possible and don't return to match the rest of the pattern. Thus .*abc matches "aabc" but .*+abc doesn't because .*+ eats the whole string. Possessive quantifiers can be used to speed up processing.

And:

If the PCRE_UNGREEDY option is set (an option which is not available in Perl) then the quantifiers are not greedy by default, but individual ones can be made greedy by following them with a question mark. In other words, it inverts the default behaviour.

The difference is thus:

/[0-9]+/  - one or more digits; greediness defined by the PCRE_UNGREEDY option
/[0-9]+?/ - one or more digits, but as few as possible (non-greedy)
/[0-9]++/ - one or more digits, but as many as possible (greedy, default)

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 + is (in a sense) already applied by default.

This snippet visualises the difference when applying PCRE_UNGREEDY (ungreedy-by-default mode). See how the default is reversed.

share|improve this answer
Why is this downvoted? The question originally had a php tag. – thirtydot May 31 '11 at 11:13
@thirtydot: And it still does. – Lightness Races in Orbit May 31 '11 at 11:14
2  
Only because I added it back :) – thirtydot May 31 '11 at 11:17
Thank you for your answer! – user557108 May 31 '11 at 11:18
@user557108: You are most welcome. And credit to Spudley for wisening us all up. :) – Lightness Races in Orbit May 31 '11 at 11:19
show 3 more comments

++ (and ?+, *+ and {n,m}+) are called possessive quantifiers.

Both [0-9]+ and [0-9]++ match one or more ASCII digits, but the second one will not allow the regex engine to backtrack into the match if that should become necessary for the overall regex to succeed.

Example:

[0-9]+0

matches the string 00, whereas [0-9]++0 doesn't.

In the first case, [0-9]+ first matches 00, but then backtracks one character to allow the following 0 to match. In the second case, the ++ prevents this, therefore the entire match fails.

Not all regex flavors support this syntax; some others implement atomic groups instead (or even both).

share|improve this answer
Thank you for your answer! – user557108 May 31 '11 at 11:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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