Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re^2: Create JSON file in specific format

by ovedpo15 (Pilgrim)
on Apr 24, 2018 at 15:54 UTC ( [id://1213483]=note: print w/replies, xml ) Need Help??


in reply to Re: Create JSON file in specific format
in thread Create JSON file in specific format

what does data in  $struct->{data} stands for?
Also Is it possible to use without pretty? I understood Its difficult for the DataBase to read it.
Thank you for the fast answer

Replies are listed 'Best First'.
Re^3: Create JSON file in specific format
by choroba (Cardinal) on Apr 24, 2018 at 16:13 UTC
    "data" is the key you used on line 4 of your JSON. In other words, $struct is a hash reference, $struct->{data} is the value corresponding to the "data" key in the referenced hash. It contains an array reference to which the code pushes the subhashes.

    To get the output without ->pretty, just delete ->pretty from the code.

    How is a database involved? What error are you getting? How do you interact with it?

    ($q=q:Sq=~/;[c](.)(.)/;chr(-||-|5+lengthSq)`"S|oS2"`map{chr |+ord }map{substrSq`S_+|`|}3E|-|`7**2-3:)=~y+S|`+$1,++print+eval$q,q,a,
Re^3: Create JSON file in specific format
by AnomalousMonk (Archbishop) on Apr 24, 2018 at 16:09 UTC
    what does data in $struct->{data} stands for?

    $struct is a hash reference. data is an autovivified key in the referenced hash. (Update: The  -> arrow operator is needed because  $struct is a reference.) Each new hash reference built from each line of input read from an input file or from the  __DATA__ handle (as in the example code) is push-ed to the value of this key.

    Also Is it possible to use without pretty?

    Did you try it? What happened? (Update: And what does the documentation say?)


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

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (2)
As of 2024-04-24 23:00 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found