Help for this page

Select Code to Download


  1. or download this
     1  #/usr/bin/perl
     2
    ...
    28       print $_;
    29    } 
    30  }
    
  2. or download this
    push @aoutput, $_ unless /matches\)$/;
    
  3. or download this
    unless (/matches\)$/) { $no_match_day_two{$_} = 1 }
    
  4. or download this
    foreach my $match ( keys %no_match_day_two ) {
       print $match unless exists $no_match_day_one{$_};
    }
    
  5. or download this
    @nmday_one_but_not_nmdtwo = grep { exists $no_match_day_two{$_} } keys
    + %no_match_day_one;