func strings.NewReplacer

5 uses

	strings (current package)
		replace.go#L32: func NewReplacer(oldnew ...string) *Replacer {

	mime/multipart
		writer.go#L132: var quoteEscaper = strings.NewReplacer("\\", "\\\\", `"`, "\\\"")

	net/http
		cookie.go#L384: var cookieNameSanitizer = strings.NewReplacer("\n", "-", "\r", "-")
		header.go#L139: var headerNewlineToSpace = strings.NewReplacer("\n", " ", "\r", " ")
		server.go#L2251: var htmlReplacer = strings.NewReplacer(