Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re^2: Regexp substitution on variable-length ranges with embedded code?

by Polyglot (Chaplain)
on May 26, 2021 at 14:26 UTC ( [id://11133068]=note: print w/replies, xml ) Need Help??


in reply to Re: Regexp substitution on variable-length ranges with embedded code? (updated)
in thread Regexp substitution on variable-length ranges with embedded code?

Your solution works for me, with the addition of:
use re 'eval';
(I'm on Perl 5.12.)

...but I don't understand it. Specifically, this line is the most difficult one for me:

(?(?{ $run[-1] - $run[-2] != 1 }) (*F))

Is that double-eval'ed or executed? What is the '*F' referencing, and what is the '$^N' from the lines above? I've never seen this kind of regex before.

Blessings,

~Polyglot~

Replies are listed 'Best First'.
Re^3: Regexp substitution on variable-length ranges with embedded code?
by AnomalousMonk (Archbishop) on May 26, 2021 at 14:59 UTC
    ... I don't understand ... this line ...

    (?(?{ $run[-1] - $run[-2] != 1 }) (*F))

    Is that double-eval'ed or executed? What is the '*F' referencing ...

    The embedded code is executed.

    +----------------------+------ embedded Perl code | | v v (?(?{ $run[-1] - $run[-2] != 1 }) (*F))
    This is the "(?(*condition*)*yes-pattern*)" regex expression added with Perl version 5.10 (see Extended Patterns in perlre). In this case, the *condition* is the true/false result of evaluating the code. If true, the (*F) (a.k.a. (*FAIL)) backtracking control verb is executed and the match fails and backtracks to the most recent successfully matched substring: a sequence with incrementing values for $3.

    ... what is the '$^N' ...

    The $^N Perl special variable (see Variables related to regular expressions in perlvar) returns the value of the most recently closed capture group.


    Give a man a fish:  <%-{-{-{-<

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (6)
As of 2024-03-28 13:15 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found