Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
      grep { $_->{EMPLOYEES} =~ /jim/ } @records;
    
    print "Found ", join (", ", map { $_->{EMPLOYER} } @selected), "\n";
    
  2. or download this
    Found Widget Co.