Ruby 字符串 chomp方法
chomp 是Ruby中的一个字符串类方法,用于返回新的字符串,并从str(如果存在)的结尾处去除给定的记录分隔符。如果$/没有从Ruby默认的记录分隔符t中改变,chomp方法也将去除回车字符(即它将去除 \n, \r, 和 \r\n)。
语法: str.chomp
参数: 这里,str是给定的字符串。
返回: 一个没有记录分隔符的新字符串。
例子 1 :
# Ruby program to demonstrate
# the chomp method
# Taking a string and
# using the method
puts "Ruby\n".chomp
puts "Ruby\r\n".chomp
输出
Ruby
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
Method