- or download this
use strict;
use Data::Dumper;
...
$index++;}}}}
print "Matched: ($matched) ", Dumper \@found;
- or download this
@found = grep { ! exists %members{ lc $_->{ID} } } @found;
- or download this
if ( $emp->{ID} =~ /$some_regex/i ) {
push @emp_found => $emp;
...
else {
push @emp_ot_found => $emp;
}