findLast function

float findLast(inputString, matchString)

inputString string

matchString string

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

This 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