Open In App

Scala String indexOf(String str) method with example

Last Updated : 03 Oct, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
The indexOf(String str) method is utilized to return the index of the sub-string which occurs first in the string stated.
Method Definition: indexOf(String str) Return Type: It returns the index of the sub-string which is specified in the argument of the method.
Example #1: Scala
// Scala program of int indexOf()
// method

// Creating object
object GfG
{ 

    // Main method
    def main(args:Array[String])
    {
    
        // Applying indexOf method
        val result = "NidhiSingh".indexOf("dh")
        
        // Displays output
        println(result)
    
    }
} 
Output:
2
Example #2: Scala
// Scala program of int indexOf()
// method

// Creating object
object GfG
{ 

    // Main method
    def main(args:Array[String])
    {
    
        // Applying indexOf method
        val result = "NidhiSingh".indexOf("Sin")
        
        // Displays output
        println(result)
    
    }
} 
Output:
5

Next Article

Similar Reads