chop是Ruby中的String类方法,用于返回删除了最后一个字符的新String。如果字符串以\ 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
相关用法
- Ruby String chop!用法及代码示例
- Ruby String chr用法及代码示例
- Ruby String hex用法及代码示例
- Ruby String eql?用法及代码示例
- Ruby String hash用法及代码示例
- Ruby String center()用法及代码示例
- Ruby String each_grapheme_cluster用法及代码示例
- Ruby String gsub用法及代码示例
注:本文由纯净天空筛选整理自Kirti_Mangal大神的英文原创作品 Ruby | String chop Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。