in reply to Re: parsing textfile is too slow
in thread parsing textfile is too slow

Shouldn't
while ($key,$val) %unihan { }
be
while ( ($key,$val)= each %unihan ) { }
??

-QM
--
Quantum Mechanics: The dreams stuff is made of

Replies are listed 'Best First'.
Re^3: parsing textfile is too slow
by cowboy (Friar) on Aug 17, 2005 at 18:32 UTC
    Oops, yes, corrected it. I knew something didn't look right, but I had just written it off to the fact I don't use each() very often. Thanks.