in reply to Problem With Perl IRC Server

For a case insensitive hash, you could use a tied hash, but it's a lot easier to just always lowercase the keys. $hash{ lc $key }

2;0 juerd@ouranos:~$ perl -e'undef christmas' Segmentation fault 2;139 juerd@ouranos:~$

Replies are listed 'Best First'.
Re: Re: Problem With Perl IRC Server
by Veachian64 (Scribe) on Jan 26, 2002 at 23:22 UTC
    Ah, that works perfectly! Thank you very much.