lastIndexOf: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
m (Applied Template:MacroFunction)
m (Added version.)
(One intermediate revision by the same user not shown)
Line 1: Line 1:
{{MacroFunction
{{MacroFunction
|name=lastIndexOf
|name=lastIndexOf
|version=1.3b48
|description=
|description=
Finds the index in a string of the last occurrence of a substring in a string. If the substring does not occur in the string then -1 is returned. The index for the string starts at 0.
Finds the index in a string of the last occurrence of a substring in a string. If the substring does not occur in the string then -1 is returned. The index for the string starts at 0.
Line 6: Line 7:
|usage=
|usage=
<source lang="mtmacro" line>
<source lang="mtmacro" line>
[h: ind = lastIndexOf(str, substr)]
lastIndexOf(str, substr)
</source>
</source>



Revision as of 11:41, 10 March 2009

lastIndexOf() Function

Introduced in version 1.3b48
Finds the index in a string of the last occurrence of a substring in a string. If the substring does not occur in the string then -1 is returned. The index for the string starts at 0.

Usage

lastIndexOf(str, substr)

Example

[lastIndexOf("abcde", "c")]

Returns 2

[lastIndexOf("abcde", "z")]
Returns -1