in reply to Re: Are Perl patterns universal?
in thread Are Perl patterns universal?
Did you try it?running this program...
...under perl5.8.4 results in a "Segmentation fault" on my machine.my $inf; $inf=qr/\b(??{$inf})/; print "matched" if ("abc"=~m/$inf/);
|
|---|