Help for this page

Select Code to Download


  1. or download this
    @a = qw(a b c b c);
    @b = qw(a x c d d);
    
  2. or download this
    for(0..$#a){
          if($a[$_] eq $b[$_] and $a[$_] ne 'x' ){
    ...
    
          }
    }