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

1 Answer

0 votes
fun main() {
    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
...