Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re^2: Feature Idea: qr//e (updated)

by haukex (Archbishop)
on Jan 19, 2017 at 12:00 UTC ( [id://1179909]=note: print w/replies, xml ) Need Help??


in reply to Re: Feature Idea: qr//e
in thread Feature Idea: qr//e (updated with solutions)

Hi vr,

my $regex = qr{(??{ join '|', map {quotemeta} qw/. | %/ })};

Another excellent idea, thank you! I've updated my root node.

it's eval'ed "before parsing a regex", while s///e is not about it at all

Yes, you're right, it was misleading of me to write that qr//e would be "analogous to s///e", since in s///e it's the replacement part that gets evaled, not the regex.

Update: Your solution has the interesting feature that the code gets reevaluated every time:

use Test::More; my @values = qw/abc def/; my $re = qr{^(??{ join '|', map {quotemeta} @values })$}i; like 'ABC', $re; like 'DEF', $re; unlike 'GHI', $re; push @values, 'ghi'; like 'ABC', $re; like 'DEF', $re; like 'GHI', $re; done_testing;

Thanks,
-- Hauke D

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (2)
As of 2024-04-25 06:24 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found