Contact: aviboots(AT)netvision.net.il
39,940 questions
51,877 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 */