Home »
Ruby Tutorial »
Ruby Programs
Ruby program to get the subarray from an array using a specified range of indices
Last Updated : December 15, 2025
Problem Solution
In this program, we will create an array of integers with few elements. Then we will get the subarray from the created array using a specified range of indices.
Program/Source Code
The source code to get the subarray from an array using a specified range of indices is given below. The given program is compiled and executed successfully.
# Ruby program to get the subarray from an array
# using specified range of indices
arr = [100,101,102,103,104,105,106,107,108,109];
subarr = arr.slice(3,5);
print "Array: ",arr,"\n";
print "Sub Array: ",subarr,"\n";
Output
Array: [100, 101, 102, 103, 104, 105, 106, 107, 108, 109]
Sub Array: [103, 104, 105, 106, 107]
Explanation
In the above program, we created an array of integers with few elements. Then we got the subarray from the created array using the slice() method. After that, we printed the elements of array and subarray.
Ruby Arrays Programs »
Advertisement
Advertisement