I want to perform a reg. expretion scanning on the whole file.
 i do something like this:
 
 undef $/;
 open(F,"filename");
 $f=<F>;
 close F;
 $/="\n";
 
 $f=~/regexp/;
 
 The problem is to this on realy big files.
 I was thing in terms of tie but do not know how to implement this.
 Thanks.
 
 
 -- 
 -------------------------------------------
 Evgeny.




Reply via email to