VOOZH about

URL: https://www.geeksforgeeks.org/scala/scala-string-lastindexofstring-str-method-with-example/

⇱ Scala String lastIndexOf(String str) method with example - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

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.
Example #1:
Output:
10
Example #2:
Output:
8
Comment
Article Tags:

Explore