in reply to perl hash array printing

If I understand correctly, you are after
my $second = $totalhash{hello}{world}[1];
See Perl Data Structures Cookbook for details.
لսႽ† ᥲᥒ⚪⟊Ⴙᘓᖇ Ꮅᘓᖇ⎱ Ⴙᥲ𝇋ƙᘓᖇ

Replies are listed 'Best First'.
Re^2: perl hash array printing
by Anonymous Monk on Sep 05, 2012 at 00:03 UTC

    yes i believe so only made for array like with @(), I am going to try this out:)

      $ perl -e " use Data::Dump; $totalhash{hello}{world}[1]=9; dd \%total +hash; dd $totalhash{hello}{world}[1]; " { hello => { world => [undef, 9] } } 9

      See References quick reference