replace string
package main
import (
"fmt"
"strings"
)
func main() {
fmt.Println("Hello World!")
asd := "asd/sububu"
qwe:= strings.Replace(asd, "/", "'", -1)
fmt.Println(qwe)
}INFO
package main
import (
"fmt"
"strings"
)
func main() {
fmt.Println("Hello World!")
asd := "asd/sububu"
qwe:= strings.Replace(asd, "/", "'", -1)
fmt.Println(qwe)
}