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
a = {a: 100 , b: 200 }
b = {a: 100 , c: 300 , b: 200 }
c = {a: 100 }
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
a = { "a" => 100 , "b" => 200 }
b = { "a" => 100 }
c = { "a" => 100 , "c" => 300 , "b" => 200 }
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}
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
14 Sep, 2021
Like Article
Save Article