func Count(s, substr string) int
package main import ( "fmt" "strings" ) func main() { fmt.Println(strings.Count("cheese", "e")) //3 fmt.Println(strings.Count("five", "")) // 5 }