Open In App

Ruby | Hash rassoc() function

Last Updated : 07 Jan, 2020
Comments
Improve
Suggest changes
Like Article
Like
Report
rassoc() is an Hash class method which searches an element through the Hash value.
Syntax: Hash.rassoc() Parameter: Hashs for finding elements. Return: searches an element through the Hash value
Example #1: Ruby
# Ruby code for rassoc() method

# declaring Hash value
a = { "a" => "abc", "b" => "200" }

# declaring Hash value
c = {"a" => 100, "c" => 300, "b" => 200}

puts "check : #{a.rassoc("200")}\n\n"

puts "check : #{c.rassoc(300)}\n\n"

puts "check : #{c.rassoc(100)}\n\n"
Output :
check : ["b", "200"]

check : ["c", 300]

check : ["a", 100]
Example #2 : Ruby
# Ruby code for rassoc() method

# declaring Hash value
a = { "a" => "geek", "b" => "200" }

# declaring Hash value
c = {"a" => "abc", "c" => 300, "b" => 200}

puts "check : #{a.rassoc("geek")}\n\n"

puts "check : #{c.rassoc(300)}\n\n"

puts "check : #{c.rassoc("abc")}\n\n"
Output :
check : ["a", "geek"]

check : ["c", 300]

check : ["a", "abc"]

Similar Reads