Ruby 字符串 chomp!方法

Ruby 字符串 chomp!方法

chomp 是Ruby中的一个字符串类方法,用于返回新的字符串,并从str的末尾删除给定的记录分隔符(如果存在的话)。如果$/没有从Ruby默认的记录分隔符t中改变,chomp方法也会删除回车字符(即它会删除 \n, \r, 和 \r\n)。如果没有做任何修改,它将返回nil。

语法: str.chomp!

参数: 这里,str是给定的字符串。

返回: 一个新的字符串,尾部没有记录分隔符,如果没有做任何修改则返回nil。

例子 1 :

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

输出


Ruby

例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")

输出

String


Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程