func strings.NewReplacer
10 uses
strings (current package)
replace.go#L32: func NewReplacer(oldnew ...string) *Replacer {
go.pact.im/x/goupdate
htmlgen.go#L10: var htmlEscaper = strings.NewReplacer(
go/doc
comment.go#L27: htmlQuoteReplacer = strings.NewReplacer(ulquo, ldquo, urquo, rdquo)
comment.go#L28: unicodeQuoteReplacer = strings.NewReplacer("``", ulquo, "''", urquo)
html
escape.go#L166: var htmlEscaper = strings.NewReplacer(
internal/profile
legacy_profile.go#L1055: r = strings.NewReplacer(attrs...)
mime/multipart
writer.go#L132: var quoteEscaper = strings.NewReplacer("\\", "\\\\", `"`, "\\\"")
net/http
cookie.go#L382: var cookieNameSanitizer = strings.NewReplacer("\n", "-", "\r", "-")
header.go#L132: var headerNewlineToSpace = strings.NewReplacer("\n", " ", "\r", " ")
server.go#L2199: var htmlReplacer = strings.NewReplacer(