Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re^2: mysteries of regex substring matching

by LanX (Saint)
on Jan 15, 2021 at 22:53 UTC ( [id://11126982]=note: print w/replies, xml ) Need Help??


in reply to Re: mysteries of regex substring matching
in thread mysteries of regex substring matching

> reading the last capture with embedded Perl code like /(....(?{print $1})){4}/

demo: (using /x for clarification)

DB<66> $x = q[AAD34017837201D98AAED18778DEF993]; DB<67> $x =~ m/(?: (....) (?{say $1}) ) {4} /x AAD3 4017 8372 01D9 DB<68>

update

I think this explains your "mystery", they all match but only the last one is kept in $1.

Cheers Rolf
(addicted to the Perl Programming Language :)
Wikisyntax for the Monastery

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11126982]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (7)
As of 2024-04-23 10:07 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found