I am having a hard time figuring out the earliest version of perl where non-capturing parentheses are supported in regex patterns?

Can I take this feature for granted for all versions of Perl5?

link|improve this question

feedback

2 Answers

up vote 10 down vote accepted

I dug out Perl 5.000 from my archive CDs. It includes

=item (?:regexp)
This groups things like "()" but doesn't make backrefences like "()" does.

So it's in all versions of Perl 5. (It's definitely not in Perl 4 or earlier.)

link|improve this answer
3  
I am impressed and amazed and disturbed that you had an archived CD with Perl 5.000 ;-) – Sinan Ünür Aug 8 '10 at 5:17
For extra disturbance, it was the OS/2 port, as that's what I was using back then. :-) – cjm Aug 8 '10 at 5:49
FYI, the typo you corrected wasn't mine. In 5.000, perlre.pod had "backrefences" in that sentence. – cjm Aug 8 '10 at 6:17
@cjm Reinserted the typo for historical accuracy. – Sinan Ünür Aug 8 '10 at 8:00
@Sinan: the history isn't secret and is available online perldoc.perl.org/index-history.html – Dummy00001 Aug 9 '10 at 10:44
show 1 more comment
feedback

Some time before 5.003_07 according to perlre for that version.

link|improve this answer
Thank you. No wonder I could not find it in perldelta files. – Sinan Ünür Aug 8 '10 at 4:03
feedback

Your Answer

 
or
required, but never shown

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