How to find the position of the first occurrence of a substring in a string with Scala

1 Answer

0 votes
object FindSubstring {
  def main(args: Array[String]): Unit = {
    val str = "I bought running shoes, but they started running alone, now we are both happy"
    val substring = "running"

    // Find the position of the first occurrence of a substring
    val position = str.indexOf(substring)

    println(position)
  }
}

    
      
/*
run:
   
9
 
*/

 



answered Apr 21, 2025 by avibootz
...