Help for this page

Select Code to Download


  1. or download this
      my @keys;
      @new{ @keys } = @orig{ @keys = grep /[adf]/, keys %orig };
    
  2. or download this
      my @keys = grep /[adf]/, keys %orig;
      @new{ @keys } = @orig{ @keys };