Quick actions

cmd+k|ctrl+k

Navigation

Languages

replace string

Snippet info

Language

Go

Visibility

public

Author

nico-latena

Created

2022-03-09T08:45:28.826226Z

Updated

2022-03-09T08:47:52.436243Z

package main

import (
    "fmt"
	"strings"
)

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