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

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

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

lastIndexOf()方法用于从我们为所述字符串指定的索引中返回我们在参数中指定的字符的最后一次出现的索引。

示例 #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('e', 4)
          
        // Displays output
        println(result)
      
    }
} 
输出:
2

在这里,搜索从索引 4 开始,从右到左位置,并返回最先出现的位置。
示例 #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('f', 1)
          
        // Displays output
        println(result)
      
    }
} 
输出:
-1

在这里,当从指定的索引从左向右搜索时,该方法无法找到指定的字符。所以,它在这里返回-1。