in reply to Re^2: Find Replace text with list
in thread Find Replace text with list
You don't need to. I used qw just for making the example. Perhaps I should've written it like this:
#!/usr/bin/perl use strict; use warnings; my $r = "ab+c*d"; my $rRegex = qr/$r/; while (my $t = <DATA>) { if ($t =~ $rRegex) { print "MATCH: $t\n"; } } __DATA__ abcd aabbbd acccd dbca
...roboticus
When your only tool is a hammer, all problems look like your thumb.
|
|---|