Open In App

Ruby | Hash inspect() function

Improve
Improve
Like Article
Like
Save
Share
Report

Hash#inspect() is a Hash class method which gives the string representation of hash.

Syntax: Hash.inspect()
Parameter: Hash values
Return: string representation of the hash

Example #1 : 

Ruby




# Ruby code for Hash.inspect() method
 
# declaring Hash value
a = {a:100, b:200}
 
# declaring Hash value
b = {a:100, c:300, b:200}
 
# declaring Hash value
c = {a:100}
 
 
# inspect Value
puts "Hash a inspect form : #{a.inspect()}\n\n"
 
puts "Hash b inspect form : #{b.inspect()}\n\n"
 
puts "Hash c inspect form : #{c.inspect()}\n\n"


Output : 

Hash a inspect form : {:a=>100, :b=>200}

Hash b inspect form : {:a=>100, :c=>300, :b=>200}

Hash c inspect form : {:a=>100}

Example #2 : 

Ruby




# Ruby code for Hash.inspect() method
 
# declaring Hash value
a = { "a" => 100, "b" => 200 }
 
# declaring Hash value
b = {"a" => 100}
 
# declaring Hash value
c = {"a" => 100, "c" => 300, "b" => 200}
 
 
# inspect Value
puts "Hash a inspect form : #{a.inspect()}\n\n"
 
puts "Hash b inspect form : #{b.inspect()}\n\n"
 
puts "Hash c inspect form : #{c.inspect()}\n\n"


Output : 

Hash a inspect form : {"a"=>100, "b"=>200}

Hash b inspect form : {"a"=>100}

Hash c inspect form : {"a"=>100, "c"=>300, "b"=>200}

 



Last Updated : 14 Sep, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads