Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

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

by AnomalousMonk (Archbishop)
on May 26, 2021 at 14:59 UTC ( [id://11133072]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Regexp substitution on variable-length ranges with embedded code?
in thread Regexp substitution on variable-length ranges with embedded code?

... 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://11133072]
help
Chatterbox?
and the web crawler heard nothing...

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

    No recent polls found