当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Ruby String chop用法及代码示例


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


相关用法


注:本文由纯净天空筛选整理自Kirti_Mangal大神的英文原创作品 Ruby | String chop Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。