findFirst 函数(实用工具库)

语法

  • float findFirst(inputString, matchString)

参数

  1. inputStringstring
  2. matchStringstring

返回

matchStringinputString 中第一次出现(位置/索引),或者 -1(如果未找到)。

描述

findFirst 函数将返回 matchStringinputString 中第一次出现的索引。

注:

索引从 0 开始。

相关内容

示例

findFirst("rule your city with cityengine","city")
# result = 10
# "rule your " = 10 characters; then the match string starts