Get the 1 based index of the last occurrence of the search string in the passed string
The string to search
The string to match
The position in the string to start searching, -1 for the start of the string
The length of the section of string to search in, -1 for the whole string after StartPosition
xf.Str.LastIndexOf("The King's counting house is the King's", "King") => 33
xf.Str.LastIndexOf("The King's counting house", "den") => -1
xf.Str.LastIndexOf("The King's counting house", "King", 10, 8) => -1