Scala String lastIndexOf(String str, int fromIndex) method with example Last Updated : 03 Oct, 2019 Comments Improve Suggest changes Like Article Like Report The lastIndexOf(String str, int fromIndex) method is utilized to return the index of the last appearance of the sub-string we specify in the argument from the index specified from right to left from the stated string. Method Definition: int lastIndexOf(String str, int fromIndex) Return Type: It returns the index of the last appearance of the sub-string specified in the argument from the specified index. Example #1: Scala // Scala program of int lastIndexOf() // method // Creating object object GfG { // Main method def main(args:Array[String]) { // Applying lastIndexOf method val result = "GeeksforGeeks".lastIndexOf("ek", 12) // Displays output println(result) } } Output: 10 Example #2: Scala // Scala program of int lastIndexOf() // method // Creating object object GfG { // Main method def main(args:Array[String]) { // Applying lastIndexOf method val result = "GeeksforGeeks".lastIndexOf("Geek", 4) // Displays output println(result) } } Output: 0 Comment More infoAdvertise with us Next Article Scala String lastIndexOf(String str) method with example N nidhi1352singh Follow Improve Article Tags : Scala Scala Scala-Method Scala-Strings Similar Reads Scala String indexOf(String str, int fromIndex) method with example The indexOf(String str, int fromIndex) method is utilized to return the index of the sub-string which occurs first from the index we specify in the string stated. Method Definition: int indexOf(String str, int fromIndex) Return Type: It returns the index of the sub-string from the index specified in 1 min read Scala String indexOf(String str, int fromIndex) method with example The indexOf(String str, int fromIndex) method is utilized to return the index of the sub-string which occurs first from the index we specify in the string stated. Method Definition: int indexOf(String str, int fromIndex) Return Type: It returns the index of the sub-string from the index specified in 1 min read Scala String lastIndexOf(String str) method with example 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 ar 1 min read Scala String lastIndexOf(String str) method with example 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 ar 1 min read Scala String lastIndexOf(int ch, int fromIndex)() method with example The lastIndexOf() method is utilized to return the index of the last appearance of the character we specify in the argument from the index we specify for the stated string. Method Definition: int lastIndexOf(int ch, int fromIndex) Return Type: It returns the index of the last appearance of the chara 1 min read Scala String lastIndexOf(int ch, int fromIndex)() method with example The lastIndexOf() method is utilized to return the index of the last appearance of the character we specify in the argument from the index we specify for the stated string. Method Definition: int lastIndexOf(int ch, int fromIndex) Return Type: It returns the index of the last appearance of the chara 1 min read Like