Help for this page

Select Code to Download


  1. or download this
    my %hash = map { my($k,$v)=split/#/; $k=int($k); ($k,$v) } @array2;
    
    ...
       next if !exists($hash{$k});
       print("$hash{$k} = $_\n");
    }
    
  2. or download this
    my %hash;
    for (@array2) {
    ...
          print("$v = $_\n");
       }
    }