Home »
Ruby Tutorial »
Ruby Programs
Ruby program to convert a set into an array
Last Updated : December 15, 2025
Problem Solution
In this program, we will create the object of the Set class and add items to the set. Then we will convert created set into the array using the to_a() method.
Program/Source Code
The source code to convert a set into the array is given below. The given program is compiled and executed successfully.
# Ruby program to convert a set
# into an array
require 'set';
setObj = Set.new();
setObj.add(101);
setObj.add(102);
setObj.add(103);
setObj.add(104);
setObj.add(105);
arr = setObj.to_a();
puts "Set is: ",setObj;
puts "Array is: ",arr;
Output
Set is:
#<Set: {101, 102, 103, 104, 105}>
Array is:
101
102
103
104
105
Explanation
In the above program, we imported the "set" package using the "require" statement. Then we created the object setObj of the Set class using the new() method and added 5 integer items into created set using add() method of the Set class. After that, we converted the created set into an array and assigned it to the array arr, and we printed the result.
Ruby Set Programs »
Advertisement
Advertisement