findLast function

Syntax

  • float findLast(inputString, matchString)

Parameters

  1. inputStringstring
  2. matchStringstring

Returns

Last occurrence (position/index) of matchString in the inputString or -1 if it is not found.

Description

The findLast function returns the index of the last occurrence of the match string in the input string.

Note:

Indices are 0 - based.

Related

Examples

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