On Tuesday, April 2, 2002, at 10:13 , Jenda Krynicky wrote:
[..]
> Either
>
> $t = "target\\[";
> if($line =~ /$t/){
if '$t' was going to be a qr why not:
$t = qr/target\[/;
i thought the qr was suppose to simplify the
compile and rentime time?
that way in 'arbitrary time' when one comes back
to 'maintain' it - You 'remember' that you set
this up as a qr?
this is a Keeper:
>
> $t = "target[";
> if($line =~ /\Q$t\E/){
>
thanks!
I never 'got it' when reading the manual...
ciao
drieux
---
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]