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


Ruby String count()用法及代码示例


count是Ruby中的String类方法。在此方法中,每个参数都定义了一组要计数的字符。这些集合的交集定义了要在给定字符串中计数的字符。以插入号^开头的任何其他字符串均被取反。

用法:str.count(parameter_list)

参数:在这里,str是给定的字符串。


返回值:字符数。

示例1:

# Ruby program to demonstrate  
# the count method  
       
# Taking a string and  
# using the method 
str = "String Counting"
puts str.count "ing"

输出:

7

示例2:

# Ruby program to demonstrate  
# the count method  
       
# Taking a string and  
# using the method 
str = "String Counting"
puts str.count "^ing"
  
str2 = "Ruby Method\\r\\n"
  
puts str.count "\\"

输出:

8
0


相关用法


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