Scala String lastIndexOf(String str) method with example
Last Updated : 3 Oct, 2019
The lastIndexOf(String str) method is utilized to return the index of the last appearance of the sub-string we specify in the argument from the stated string.
Method Definition: int lastIndexOf(String str)
Return Type: It returns the index of the last appearance of the sub-string specified in the argument.