vote up 4 vote down star
3

I have a Perl program that stores regular expressions in configuration files. They are in the form:

regex = ^/d+$

Elsewhere, the regex gets parsed from the file and stored in a variable - $regex. I then use the variable when checking the regex, e.g.

$lValid = ($valuetocheck =~ /$regex/);

I want to be able to include perl variables in the config file, e.g.

regex = ^\d+$stored_regex$

But I can't work out how to do it.

When regular expressions are parsed by Perl they get interpreted twice. First the variables are expanded, and then the the regular expression itself is parsed.

What I need is a three stage process: First interpolate $regex, then interpolate the variables it contains and then parse the resulting regular expression. Both the first two interpolations need to be "regular expression aware". e.g. they should know that the string contain $ as an anchor etc...

Any ideas?

flag

3 Answers

vote up 3 vote down check

Using eval can help you here. Take a look at the following code it can precompile a regexp that's ready to be used latter:

my $compiled_regexp;
my $regexp = '^\d+$stored_regexp$';
my $stored_regexp = 'a';

eval "\$compiled_regexp = qr/$regexp/;";
print "$compiled_regexp\n";

The operator qr// can be used to precompile a regexp. It lets you build it but doesn't execute it yet. You can first build your regexps with it and then use them latter.

link|flag
vote up 3 vote down

Your Perl variables are not in scope within your configuration file, and I think that's a good thing. eval is scary.

You would be better off implementing your own templating.

So in the config file:

regex = ^\d+__TEMPLATE_FIELD__$

In the config file reader:

# something like this for every template field you need
$regex =~ s/__TEMPLATE_FIELD__/$stored_regex/g;

When using:

$lValid = ($valuetocheck =~ m/$regex/)

Move these around depending on at what point you want the template substitution to apply.

link|flag
vote up 7 vote down

You can define the regexp in your configuration file like this:

regex = ^\d+(??{$stored_regex})$

But you will need to disable a security check in the block where you're using the regexp by doing this in your Perl program:

use re 'eval';
link|flag
It's elegant solution. – Hynek -Pichi- Vychodil Feb 9 at 13:02

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.