in reply to Re: Deleting an array entry
in thread Deleting an array entry

Here is the code i use:
for (my $i = 0; $i < @array};$i++) { if ($array($i) eq $nick) { splice(@array},$i,$i+1); last; } }

But I really havent done much array element removing (just read about splice yesterday ;)).

^jasper