in reply to Re: Are Perl patterns universal?
in thread Are Perl patterns universal?

Did you try it?
running this program...
my $inf; $inf=qr/\b(??{$inf})/; print "matched" if ("abc"=~m/$inf/);
...under perl5.8.4 results in a "Segmentation fault" on my machine.


-- All code is 100% tested and functional unless otherwise noted.