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

Related Articles

Ruby | String chomp! Method

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

chomp! is a String class method in Ruby which is used to returns new String with the given record separator removed from the end of str (if present). chomp method will also removes carriage return characters (that is it will remove \n, \r, and \r\n) if $/ has not been changed from the default Ruby record separator, t. If $/ is an empty string, it will remove all trailing newlines from the string. It will return nil if no modifications were made.

Syntax: str.chomp!

Parameters: Here, str is the given string.

Returns: A new string having no record separator from the end or nil if no changes were made.

Example 1:




# Ruby program to demonstrate 
# the chomp! method 
       
# Taking a string and 
# using the method 
puts "Ruby".chomp!
puts "Ruby\r\n".chomp 

Output:


Ruby

Example 2:




# Ruby program to demonstrate 
# the chomp! method 
       
# Taking a string and 
# using the method 
puts "String\r\n\r\r\n".chomp!('')
puts "Method".chomp!("tho")

Output:

String


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