Find the position of a substring:
s := "Hello, World!"
i := strings.Index(s, "World") // 7
j := strings.Index(s, "Foo") // -1 (not found)
Index returns the byte position of the first occurrence, or if not found. Use LastIndex to find the last occurrence. Both are case-sensitive.