Help for this page

Select Code to Download


  1. or download this
    TEMP_HASH_BLOCK: {
        my %temphash;
        @temphash{@array1} = ();
        delete @temphash{@array1};
        my @newarray = keys %temphash;
    }
    
  2. or download this
     my @newarray = do {
        my %temphash;
        @temphash{@array1} = ();
        delete @temphash{@array1};
        keys %temphash;
    };