Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: Sorting complex data

by davido (Cardinal)
on Feb 13, 2013 at 19:47 UTC ( [id://1018614]=note: print w/replies, xml ) Need Help??


in reply to Sorting complex data

I'm assuming that you're interested just in the "report" sub-structure, so I'm only sorting that part. And I'm assuming that you want a numerical sort for ID's.

use strict; use warnings; use Data::Dumper; my $json_response = { 'report' => [ { 'stat' => 1, 'timestamp' => '1360775722', 'status' => '"Active"', 'name' => '"09:15 am, 13 Feb, 2013"', 'id' => '200' }, { 'stat' => 1, 'timestamp' => '1360775806', 'status' => '"Active"', 'name' => '"09:16 am, 13 Feb, 2013"', 'id' => '199' } ], 'username' => 'test' }; my @sorted = sort { $a->{id} <=> $b->{id} } @{ $json_response->{report +} }; print Dumper \@sorted;

Dave

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (6)
As of 2024-03-28 16:14 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found