lastIndexOf: Difference between revisions
Jump to navigation
Jump to search
Verisimilar (talk | contribs) m (Applied Template:MacroFunction) |
Verisimilar (talk | contribs) m (Macros:Functions:lastIndexOf moved to lastIndexOf) |
(No difference)
|
Revision as of 02:31, 9 March 2009
lastIndexOf() Function
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
[h: ind = lastIndexOf(str, substr)]
Example
[lastIndexOf("abcde", "c")]
Returns 2
[lastIndexOf("abcde", "z")]