语法
- float find(inputString, matchString, n)
参数
- inputString—string
- matchString—string
- n - float
返回
matchString 在 inputString 中第 n 次出现的索引;或 -1(如果未找到)。
描述
find 函数将返回 matchString 在 inputString 中第 n 次出现的索引。
注:
索引 n 从 0 开始。
相关内容
示例
find("CE_Zero CE_One CE_Two", "CE", 0)
# result = 0
find("CE_Zero CE_One CE_Two", "CE", 1)
# result = 8
find("cityengine rocks my world; cityengine should rock yours too", "cityengine", 0)
# result = 0
find("cityengine rocks my world; cityengine should rock yours too", "cityengine", 1)
# result = 27
find("CE_Zero CE_One CE_Two", "asdf", 1)
# result = -1
# no match found.