Help for this page

Select Code to Download


  1. or download this
    my %hash2;
    map { $hash2{$_} = $hash{$_} if /^NETWORK/ } keys %hash;
    
  2. or download this
    my %hash2;
    { $hash2{$_} = $hash{$_} if /^NETWORK/ } foreach keys %hash;