Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a bunch of matches that I need to make, and they all use the same code, except for the name of the file to read from, and the regexp itself. Therefore, I want to turn the match into a procedure that just accepts the filename and regexp as a string. When I use the variable to try to match, though, the special capture variables stopped being set.

$line =~ /(\d+)\s(\d+)\s/;

That code sets $1 and $2 correctly, but the following leaves them undefined:

$regexp = "/(\d+)\s(\d+)\s/";
$line =~ /$regexp/;

Any ideas how I can get around this?

Thanks, Jared

share|improve this question

3 Answers

up vote 1 down vote accepted

Quote your regex string usin qr :

my $regex = qr/(\d+)\s(\d+)\s/;
my $file =q!/path/to/file!;
foo($file, $regex);

then in the sub :

sub foo {
my $file = shift;
my $regex = shift;

open my $fh, '<', $file or die "can't open '$file' for reading: $!";
while (my $line=<$fh>) {
    if ($line =~ $regex) {
        # do stuff
    }
}
share|improve this answer

Use qr instead of quotes:

$regexp = qr/(\d+)\s(\d+)\s/;
$line =~ /$regexp/;
share|improve this answer

Quote your string using the perl regex quote-like operator qr

$regexp = qr/(\d+)\s(\d+)\s/;

This operator quotes (and possibly compiles) its STRING as a regular expression.

See the perldoc page for more info: http://perldoc.perl.org/functions/qr.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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