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.

I have some JSON returned from a server:

{
  "outer" : {
    "inner" : "1"
    },

  "outer2" : {
    "inner" : "1"
    },

  "outer3" : {
    "inner" : "1"
    },

}

I'd like to access ~something~.inner programmatically, and I have a variable with that data in it, but if I say variable.inner, it doesn't work (obviously). What's the correct syntax to do this?

Thanks!

share|improve this question
what programming language do you use? – Sergey Eremin Jul 19 '12 at 15:50

2 Answers

data = JSON.parse(jsonString);
var yourvar = 'outer';
data[yourvar].inner;

assuming javascript

share|improve this answer
What is it in java? - blackberry – Ahmad Shahwaiz Nov 15 '12 at 9:30

eval({ "outer" : { "inner" : "1" },

"outer2" : { "inner" : "1" },

"outer3" : { "inner" : "1" },

}).outer.inner

in javascript

share|improve this answer

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.