http://www.perlmonks.org?node_id=1058590

talexb has asked for the wisdom of the Perl Monks concerning the following question:

I've been tinkering around with regular expressions, and in particular lookahead assertions. The examples on page 248 of the Camel (fourth edition) say that this code

"0123456789" =~ /(\d{3})/g;
returns only three strings, '012', '345' and '678', since the regex engine moves past the pattern it's found each time. I tried this in the debugger, and confirmed the behaviour:
main::(-e:1): 1 DB<1> $foo = "123456790" DB<2> @w1 = ( $foo =~ /(\d{3})/g ); DB<3> x @w1 0 123 1 456 2 790

Now, I'm interested in a regex that also finds '123' and '234' -- I want to tell the regex engine to reset to where it found the last match, plus one character. The Camel appears to say that the next example does this, with the lookahead assertion as follows:

"0123456789" =~ /(?:(\d{3}))/g;
Brimming with energy and thrilled at my discovery, I try that out in the debugger:
DB<4> @w2 = ( $foo =~ /(?:(\d{3}))/g ); DB<5> x @w2 0 123 1 456 2 790
Nope. Can someone suggest what I've done wrong?

Update: As noted below, this is a typo, as recorded on the errata page for this book. I'll be going through the rest of the errata and making updates to my Programming Perl (4th edition) later today.

Alex / talexb / Toronto

Thanks PJ. We owe you so much. Groklaw -- RIP -- 2003 to 2013.