in reply to Re: Accessing data in a Hash of Arrays
in thread Accessing data in a Hash of Arrays

Thanks Kennethk! This was exactly what I was needing help with and it worked perfectly:

for my $first (@{$getConfigurationsResults->{Configuration}}) { next unless $first->{ConfItems}; for my $second (@{$first->{ConfItems}{ConfQty}}) { print $second->{ConfItem}{Fuel}{ConfItemName}, "\n"; } }