func strings.Replace

5 uses

	strings (current package)
		strings.go#L924: func Replace(s, old, new string, n int) string {
		strings.go#L964: 	return Replace(s, old, new, -1)

	net/http
		client.go#L163: 		referer = strings.Replace(referer, auth, "", 1)
		client.go#L1006: 		return strings.Replace(u.String(), u.User.String()+"@", u.User.Username()+":***@", 1)

	src.elv.sh/pkg/eval/mods/str
		str.go#L326: 	return strings.Replace(s, old, repl, opts.Max)