in reply to Re: Difference Quantity of two Arrays
in thread Difference Quantity of two Arrays
use strict; use warnings; use List::Compare; my @dbs = qw(fetch forward user smtp); my @skip_dbs = qw(user smtp); my $lc = List::Compare->new(\@dbs, \@skip_dbs); my @list = $lc->get_unique; print @list;
Cheers,
Brent
|
|---|