Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

If you want to iterate through the key/value pairs of the "appLinks" hash, here's an example. Note that the OPed JSON string must be fixed before it can be decoded (misplaced commas), and also that I've added some more pairs for the example.

Win8 Strawberry 5.8.9.5 (32) Mon 09/13/2021 6:17:03 C:\@Work\Perl\monks >perl -Mstrict -Mwarnings use JSON; use Data::Dump qw(dd); # fixed and enhanced JSON string. my $json_string = ' [ { "visio": { "Launch": false, "hide": { "iOS": true }, "appLinks": { "preview_sandbox_1_link": true, "fooble": false, "wibble": 42, "blarfl": "darble" } } } ] '; # print "$json_string \n"; # for debug my $arrayref = decode_json $json_string; # dd $arrayref; # for debug # convenience variable. my $appLinks_hashref = $arrayref->[0]{'visio'}{'appLinks'}; for my $appLink_key (keys %{ $appLinks_hashref }) { print "appLink key '$appLink_key' -> "; print "appLink value '$appLinks_hashref->{$appLink_key}' \n"; } ^Z appLink key 'wibble' -> appLink value '42' appLink key 'blarfl' -> appLink value 'darble' appLink key 'preview_sandbox_1_link' -> appLink value 'true' appLink key 'fooble' -> appLink value 'false'
I hope this helps a bit.


Give a man a fish:  <%-{-{-{-<


In reply to Re: Need to get the key information from key and value pair by AnomalousMonk
in thread Need to get the key information from key and value pair by chandantul

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

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

    No recent polls found