From the Java 6 Pattern documentation:

Special constructs (non-capturing)

(?:X)   X, as a non-capturing group

(?>X)   X, as an independent, non-capturing group

Between (?:X) and (?>X) what is the difference? What does the independent mean in this context?

link|improve this question

feedback

2 Answers

up vote 17 down vote accepted

It means that the grouping is atomic, and it throws away backtracking information for a matched group. So, this expression is possessive; it won't back off even if doing so is the only way for the regex as a whole to succeed. It's "independent" in the sense that it doesn't cooperate, via backtracking, with other elements of the regex to ensure a match.

link|improve this answer
feedback

if you have (foo(?>co)*co), that will never match. im sure there are practical examples of when this would be useful, try the o'reilly book.

link|improve this answer
+1 for mentioning the o'reilly book – Benjamin Seiller May 25 '11 at 16:12
feedback

Your Answer

 
or
required, but never shown

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