Contact: aviboots(AT)netvision.net.il
40,891 questions
53,304 answers
573 users
package main import ( "fmt" "strings" ) func main() { s := "go GO php PHP GO Python go GO" s = strings.Replace(s, "GO", "C++", 2) fmt.Println(s) } /* run: go C++ php PHP C++ Python go GO */