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
相关用法
- Ruby String chr用法及代码示例
- Ruby String hex用法及代码示例
- Ruby String eql?用法及代码示例
- Ruby String grapheme_clusters用法及代码示例
- Ruby String byteslice用法及代码示例
- Ruby String end_with?用法及代码示例
- Ruby String gsub用法及代码示例
- Ruby String bytes用法及代码示例
注:本文由纯净天空筛选整理自Kirti_Mangal大神的英文原创作品 Ruby | String count() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。