http://www.perlmonks.org?node_id=970939


in reply to Re^2: Attempting to interpret JSON data
in thread Attempting to interpret JSON data

Maybe simply

for my $elem (@{$decodejs->{lbvserver}}) { print "$elem->{valueIwant}\n"; }

Replies are listed 'Best First'.
Re^4: Attempting to interpret JSON data
by mr007619 (Novice) on May 16, 2012 at 23:21 UTC

    Yes thank you now I realize that was a reference and much easier - understanding this better now, thanks a lot.