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