in reply to
Array Element Deletion
If you'd normally use
then use
@a = grep { ... } @a
@{$h{$k}} = grep { ... } @{$h{$k}}
splice(@a, ...)
splice(@{$h{$k}}, ...)
etc
Comment on
Re: Array Element Deletion
Select
or
Download
Code
In Section
Seekers of Perl Wisdom