in reply to Correct syntax to access an array slice within a hash within a hash
More info at perlrefmy $table = { foo => { bar => [qw(one two three four five)] } }; print join(" - ", @{$table->{foo}->{bar}}[2..4]); __output__ three - four - five
_________
broquaint
|
|---|