Help for this page

Select Code to Download


  1. or download this
    my %hash = (
                '.111' => 'Aaaa',
    ...
               );
    
    $hash{$_} = substr $hash{$_}, 2 for keys %hash;
    
  2. or download this
    print Dumper \%hash;
    -- -- -- -- -- -- -- --
    $VAR1 = {
    ...
              '22' => 'Bbbb',
              '11' => 'Aaaa'
            };