Ruby 字符串 chop方法
chop 是Ruby中的一个字符串类方法,用于返回一个去除最后一个字符的新字符串。如果字符串以 \r\n, b 结尾,则两个字符都会被删除。对空字符串使用 chop 方法会返回一个空字符串。
语法: str.chop
参数: 这里,str是给定的字符串。
返回: 一个没有记录分隔符的新字符串。
例1:
# Ruby program to demonstrate
# the chop method
# Taking a string and
# using the method
puts "Ruby".chop
puts "Ruby\r\n".chop
输出:
Rub
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
Meth