Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Ruby | String delete! Method

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

delete! is a String class method in Ruby which is used to perform a delete operation, returning the given string, or nil if the given string was not modified.

Syntax: str.delete!(parameter_list)

Parameters: Here, str is the given string and parameter_list are the specified characters.

Returns: nil if the string not modified.

Example 1:




# Ruby program to demonstrate 
# the delete! method 
       
# Taking a string and 
# using the method
str = "String Counting"
puts str.delete! "ing"

Output:

Str Cout

Example 2:




# Ruby program to demonstrate 
# the delete! method 
       
# Taking a string and 
# using the method
str = "String Counting"
puts str.delete! "ing", "^n"
  
str2 = "Ruby Method"
  
puts str2.delete! "ZXC"

Output:

Strn Countn

My Personal Notes arrow_drop_up
Last Updated : 13 Dec, 2019
Like Article
Save Article
Similar Reads