Ruby 字符串 count()方法
count 是Ruby中的一个字符串类方法。在这个方法中,每个参数都定义了一个要计算的字符集。这些字符集的交集定义了给定字符串中要计算的字符。任何其他以粗体字^开头的字符串都被否定了。
语法: 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