Help for this page

Select Code to Download


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