Help for this page

Select Code to Download


  1. or download this
    my %temphash;
    @temphash{@array1, @array2} = ();
    my @mergedkeys = keys %temphash
    
  2. or download this
    my %temphash;
    @temphash{@array1} = ();
    delete @temphash{@array1};
    my @newarray = keys %temphash;