📌  相关文章
📜  带有示例的 Scala String lastIndexOf(String str, int fromIndex) 方法

📅  最后修改于: 2022-05-13 01:55:21.302000             🧑  作者: Mango

带有示例的 Scala String lastIndexOf(String str, int fromIndex) 方法

lastIndexOf(String str, int fromIndex)方法用于返回我们在参数中指定的子字符串的最后一次出现的索引,该索引从指定的字符串从右到左指定的索引。

示例 #1:

// 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)
      
    }
} 
输出:
10

示例 #2:

// 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)
      
    }
} 
输出:
0