Open In App

Remove array elements in Ruby

Last Updated : 20 Jul, 2021
Improve
Improve
Like Article
Like
Save
Share
Report

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

Method #1: Using Index

Ruby




# 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




# 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




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


Output:

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

 



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads