Access elements of nested hashes using dig method

The dig method in Ruby’s Hash class allows us to access nested hash elements using a sequence of keys as arguments

Syntax:

nested_hash.dig(key1, key2, …)

Example: In this example, we use dig method to access the value by passing the keys as arguments

Ruby
# Example nested hash
nested_hash = {
  key1: {
    key2: {
      key3: "geekforgeeks"
    }
  }
}

# Access elements of nested hashes using dig method
value2 = nested_hash.dig(:key1, :key2, :key3)
puts "Value: #{value2}"
 

Output
Value: geekforgeeks

How to Access elements of nested hashes in Ruby?

RIn this article, we will discuss how to access elements of nested hashes in Ruby. We can access elements of nested hashes through different methods ranging from using the dig method to the fetch method.

Table of Content

  • Access elements of nested hashes using square brackets
  • Access elements of nested hashes using dig method
  • Access elements of nested hashes using fetch method

Similar Reads

Access elements of nested hashes using square brackets

In this method, square brackets are used with keys to access nested hash elements....

Access elements of nested hashes using dig method

The dig method in Ruby’s Hash class allows us to access nested hash elements using a sequence of keys as arguments...

Access elements of nested hashes using fetch method

The fetch method allows us to access nested hash elements....

Contact Us