in reply to Re: Re: Re: Auto linking to words in a text file
in thread Auto linking to words in a text file

That has to copy the string though. Doing:
my $x = do { "string" };
is less efficient than
my $x; { $x = "string" }


japhy -- Perl and Regex Hacker