Ruby 字符串 chop!方法
chop! 是Ruby中的一个字符串类方法,用于返回一个去除最后一个字符的新字符串。如果字符串以 \r\n, b 结尾,则两个字符都会被删除,如果字符串为空,则返回nil。
语法: str.chop!
参数: 这里,str是给定的字符串。
返回: 一个没有记录分隔符的新字符串,如果字符串为空,则返回nil。
例子 1 :
# Ruby program to demonstrate
# the chop! method
# Taking a string and
# using the method
puts "".chop!
puts "Ruby\r\n".chop!
输出
Ruby
例2 :
# Ruby program to demonstrate
# the chop! method
# Taking a string and
# using the method
puts "String\r\n\r\r\n".chop!
# Removing two characters
puts "Method".chop!.chop!
输出
String
Method