Open In App

Remove array elements in Ruby

In this article, we will learn how to remove elements from an array in Ruby.

Method #1: Using Index






# Ruby program to remove elements 
# in array
   
# creating string using []
str = ["GFG", "G4G", "Sudo", "Geeks"]
   
str.delete_at(0)
print str

Output:

["G4G", "Sudo", "Geeks"

Method #2: Using delete() method –






# Ruby program to remove elements 
# in array
   
# creating string using []
str = ["GFG", "G4G", "Sudo", "Geeks"]
   
str.delete("Sudo")
print str

Output:

 ["GFG", "G4G", "Geeks"

Method #3: Using pop() method –




# Ruby program to remove elements 
# in array
   
# creating string using []
str = ["GFG", "G4G", "Sudo", "Geeks"]
   
str.pop
print str

Output:

 ["GFG", "G4G", "Sudo"] 

 


Article Tags :