Dear Monks,
As I was thinking about this node about dynamically building regexes, I had the idle thought that it might be nice if qr// supported qr//e, analogous to s///e it would eval the inside of the construct before parsing it as a regex. Now this is really just a very minor itch, and I don't yet have any idea of how much sense it makes or how difficult it might be to implement, but I still thought I'd bounce it off of you.
Thoughts? Maybe the "normal" and/or "hacked" solutions below are good enough, and the effort required to implement qr//e isn't worth it? Other potential problems I haven't noticed yet?
Update 2017-01-19: TIMTOWTDI has already provided plenty of possible solutions, and I just wasn't feeling creative enough at the moment to see them :-) Thank you very much, LanX, Haarg, and vr! I updated the code with your solutions, and added Test::More and sub testre.
Code:
use warnings;
use strict;
use Test::More;
sub testre;
# The "normal" solution
my $re = join '|', map {quotemeta} qw/a . | %/;
testre qr/$re/i ;
# The "hacked" solution
testre qr{@{[ join '|', map {quotemeta} qw/a . | %/ ]}}i ;
# Wouldn't this be a bit nicer?
#testre qr{ join '|', map {quotemeta} qw/a . | %/ }ei ;
# ### Update ###
# Thanks to LanX
sub qre (&;$) {
my $re = shift->();
eval 'qr/$re/'.(shift//'') || die $@
}
testre qre{ join '|', map {quotemeta} qw/a . | %/ }'i' ;
# Thanks to Haarg
testre map qr/$_/i, join '|', map {quotemeta} qw/a . | %/ ;
# Thanks to vr
testre qr{(??{ join '|', map {quotemeta} qw/a . | %/ })}i ;
done_testing;
sub testre {
my $re = shift;
diag explain $re;
is ref $re, 'Regexp';
like $_, $re for qw/A . | %/;
unlike 'bcd', $re;
}
Regards, -- Hauke D
Update almost 6 months later: I just happened to stumble across this node: qr// with /e? :-)
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|