in reply to Removal of values in array from array list
my %tocheck = map { $_ => 1 } @tocheck; for (values(%checkfrom)) { @$_ = grep !$tocheck{$_}, @$_; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Removal of values in array from array list
by jemswira (Novice) on Aug 31, 2012 at 08:15 UTC | |
by ikegami (Patriarch) on Sep 17, 2012 at 05:21 UTC |