Home »
Ruby »
Ruby Programs
Ruby program to get hash collection values as an array
Ruby Example: Write a program to get hash collection values as an array.
Submitted by Nidhi, on February 19, 2022
Problem Solution:
In this program, we will create a hash collection then we will get hash values as an array using the values() method, and print the result.
Program/Source Code:
The source code to get hash collection values as the array is given below. The given program is compiled and executed on Windows 10 Operating System successfully.
# Ruby program to get hash collection
# values as array
hash = {"101" => "Arun", "102" => "Sumit", "103" => "Mukesh"};
array=hash.values();
puts "Values as array: ",array;
Output:
Values as array:
Arun
Sumit
Mukesh
Explanation:
In the above program, we created a hash collection to store student information. Then we used the values() method to get values from the hash collection as an array and printed the result.
Ruby Hashes Programs »