Help for this page

Select Code to Download


  1. or download this
    foreach my $unique (@second_list_new)
    {
    ...
            print "newly in this $unique\n\n";
        }
    }
    
  2. or download this
        if (grep (/^\Q$unique\E$/,@first_list_new))
    
  3. or download this
         my @first_list_new = map { s/\s*$//m; lc $_ } <FIRST_LIST>;