Is it possible to emulate possessive quantifiers (.NET doesn’t support it) using atomic grouping (or in other way)?

Note. I found that (x+x+)++y can be replaced with (?>(x+x+)+)y, but this is just an example and I don’t know whether always {something}@+ equals to (?>{something}@) (where @ is a quantifier).

link|improve this question
Isn't (?>...) the same? I'm not sure I understand your question. – Kobi Apr 4 '11 at 11:24
@Kobi: Yes. See my answer for details from the master. – ridgerunner Apr 5 '11 at 0:04
feedback

2 Answers

up vote 1 down vote accepted

Yup. May I quote the master himself, Jeffrey Friedl, from page 142 of his classic Mastering Regular Expressions (3rd Edition):

"In one sense, possessive quantifiers are just syntactic sugar, as they can be mimicked with atomic grouping. Something like .++ has exactly the same result as (?>.+), although a smart implementation can optimize possessive quantifiers more than atomic grouping."

link|improve this answer
feedback

Nope, that's all there is to it. Possessive quantifiers are just a convenient shorthand for atomic groups. And they are very convenient indeed! If the .NET devs had asked me which feature they should support, I would have chosen possessive quantifiers.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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