Skip to main content
Version: 8.1

lastIndexOf

This function is used by Ignition's Expression language.

Description​

Searches for the last occurrence of the substring inside of string. Returns the index of where substring was found, or -1 if it wasn't found. The first position in the string is position 0.

Syntax​

lastIndexOf(string, substring)

Parameters​

TypeParameterDescription
String or ListstringThe string to search through. As of version 8.1.8, this parameter also accepts tuples and lists.
StringsubstringThe string to search for.

Returns​

Integer - The index where the substring was last found in the string. Returns -1 if the substring is not found.

Examples​

Code Snippet
lastIndexOf("Hamburger", "urge") //Returns 4.
Code Snippet
lastIndexOf("Test", "") //Returns 4.
Code Snippet
lastIndexOf("Dysfunctional", "fun") //Returns 3.
Code Snippet
lastIndexOf("Dysfunctional", "marble") //Returns -1.
Code Snippet
lastIndexOf("banana", "n") //Returns 4.