findLast function

Syntax

  • float findLast(string inputstring, string matchString)

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 matchString in the inputString.

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

In this topic