Help for this page

Select Code to Download


  1. or download this
      DB<110> %hash = ("fred" => "flintstone", "dino" => undef, "barney" =
    +> "rubble", "betty" => "rubble");
    
    ...
              'dino' => undef,
              'fred' => 'flintstone'
            };
    
  2. or download this
      DB<115> $length = 0 + keys %hash
     => 4
    ...
         betty    =>    rubble
          dino    =>          
          fred    =>flintstone
    
  3. or download this
      DB<123> $template = "%10s\t=>%10s\n" x (0 + keys %hash)
    %10s    =>%10s
    ...
         betty    =>    rubble
          dino    =>          
          fred    =>flintstone