findLast 函数

语法

  • float findLast(inputString, matchString)

参数

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

返回

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

说明

findLast 函数用于返回匹配字符串在输入字符串中最后一次出现的索引。

注:

索引从 0 开始。

相关内容

示例

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

在本主题中