Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Find below the json response...

{"Object":
          {"PET ANIMALS":[{"id":1,"name":"Dog"},
                          {"id":2,"name":"Cat"}],
           "Wild Animals":[{"id":1,"name":"Tiger"},
                           {"id":2,"name":"Lion"}]
           }
}

In the above mentioned response, what is the way to find the length of "PET ANIMALS" and "Wild ANIMALS"......

share|improve this question
3  
In which programming language? – Marcelo Cantos Oct 28 '10 at 12:00
@Marcelo LOL good question – Šime Vidas Oct 28 '10 at 12:03

2 Answers

up vote 3 down vote accepted
var json = /* your JSON object */ ;

json["Object"]["PET ANIMALS"].length // returns the number of array items

Using a loop to print the number of items in the arrays:

var obj = json["Object"];
for (var o in obj) {
    if (obj.hasOwnProperty(o)) {
        alert("'" + o + "' has " + obj[o].length + " items.");
    }
}
share|improve this answer
Is there anyway to get the length using indexes. for e.g. json["Object"][0].length instead of json["Object"]["PET ANIMALS"].length – Sri Oct 28 '10 at 15:33
@Sri Interesting question. I'm not sure, but I think not. Objects are collections of unordered properties, so there is no order based on which you could get the first, second, third, etc. property. But you may use a loop - I updated my answer. – Šime Vidas Oct 28 '10 at 15:59

You didn't specify a language, so here is an example in Perl:

#!/usr/bin/perl
use strict;
use warnings;
use v5.10;
use JSON::Any;
use File::Slurp;

my $json = File::Slurp::read_file('test.json');
my $j = JSON::Any->new;
my $obj = $j->jsonToObj($json);

say scalar @{$obj->{'Object'}{'PET ANIMALS'}};

# Or you can use a loop

foreach my $key (keys %{$obj->{'Object'}}) {
        printf("%s has %u elements\n", $key, scalar @{$obj->{'Object'}{$key}});
}
share|improve this answer
oh thanks.i wanted that in javascript – Sri Oct 28 '10 at 15:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.