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

1 Answer

0 votes
package main

import (
    "fmt"
    "strings"
)

func main() {
    str := "I bought running shoes, but they started running alone, now we are both happy"
    substring := "running"

    // Find the position of the first occurrence of substring
    position := strings.Index(str, substring)

    fmt.Println(position)
}


/*
run:

9

*/

 



answered Apr 21, 2025 by avibootz
...