findFirst 函数(实用工具库)

语法

  • float findFirst(inputString, matchString)

参数

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

返回

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

说明

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

注:

索引从 0 开始。

相关内容

示例

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

在本主题中