count 函数

语法

  • float count(inputString, matchString)

参数

  1. inputString - 字符串
  2. matchString - 字符串

返回值

matchStringinputString 中的匹配项数。

说明

count 函数用于返回 matchStringinputString 中的匹配项数。

相关内容

示例

count("cityengine", "e")
# result = 2
count("cityengine rocks my world; cityengine should rock yours too", "cityengine")
# result = 2

在本主题中