Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re^5: How to use a json string with nested array and nested hash elements?

by Anonymous Monk
on Feb 05, 2013 at 05:43 UTC ( [id://1017065]=note: print w/replies, xml ) Need Help??


in reply to Re^4: How to use a json string with nested array and nested hash elements?
in thread How to use a json string with nested array and nested hash elements?

They dereference the array copying it to a new variable. This gives easier syntax, but the array is copied which might have performance implications. (They are very slight since the array is only a single element in this case.) Mine should have perhaps been named $strarray_aref since it was still a reference.

All the variables I was using were references, hence a scalar $variable which get dereferenced with @{ } or %{ } or ->

One thing I forgot to mention that the outermost loop in my code sample is pretty useless since the array is only a single element. It could be replaced with my $str = $strarray->[0];

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1017065]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (4)
As of 2024-03-19 06:45 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found