Contact: aviboots(AT)netvision.net.il
39,907 questions
51,839 answers
573 users
package main import ( "fmt" "strings" ) func main() { str := "java,c,c++,c#,rust,go" // Replace commas with semicolons str = strings.ReplaceAll(str, ",", ";") fmt.Println(str) } /* run: java;c;c++;c#;rust;go */