When trying to access an element deep in an array of arrays, what is the best way to avoid getting the error 'undefined method `[]' for nil:NilClass' if an element doesn't exist?

For example I'm currently doing this, but it seems bad to me:

if @foursquare['response']['groups'][0].present? && @foursquare['response']['groups'][0]['items'].present?
link|improve this question

Don't you mean a hash of hashes, not an array of arrays? – Andrew Grimm Jun 15 '11 at 0:44
Closely related question: stackoverflow.com/questions/6224875/… – Andrew Grimm Jun 15 '11 at 0:47
feedback

2 Answers

up vote 1 down vote accepted

Depending on your array content, you can omit the .present?. Ruby will also just take the last value in such a construct, so you can omit the if statement.

@foursquare['response']['groups'][0] &&
@foursquare['response']['groups'][0]['items'] &&
@foursquare['response']['groups'][0]['items'][42]

More elegant solutions for this problem are, for example, the egonil (blog post) and the andand gem (blog post).

link|improve this answer
I've wound up using this for now: if @foursquare['response']['groups'].try(:[], 0).try(:[], 'items').present?. Thanks! – Michael Irwin Jun 13 '11 at 19:16
+1 for links ;) – lucapette Oct 3 '11 at 22:48
feedback
if @foursquare['response']['groups'][0].to_a['items']
  . . .

It happens that NilClass implements a #to_a that returns []. This means that you can map every nil to [] and typically write a single expression without tests.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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