func strings.ReplaceAll

17 uses

	strings (current package)
		strings.go#L1036: func ReplaceAll(s, old, new string) string {

	flag
		flag.go#L527: 		b.WriteString(strings.ReplaceAll(usage, "\n", "\n    \t"))

	github.com/aws/aws-sdk-go-v2/service/s3
		endpoints.go#L194: 			options.EndpointOptions.ResolvedRegion = strings.ReplaceAll(strings.ReplaceAll(strings.ReplaceAll(

	github.com/aws/smithy-go/middleware
		stack.go#L204: 	v = strings.ReplaceAll(v, "\n", "\\n")
		stack.go#L205: 	v = strings.ReplaceAll(v, "\r", "\\r")

	go/types
		typexpr.go#L212: 	return strings.ReplaceAll(fmt.Sprintf("%T", typ), "types.", "")

	golang.org/x/tools/go/packages
		golist_overlay.go#L550: 	re = strings.ReplaceAll(re, `\.\.\.`, `[^`+vendorChar+`]*`)

	html/template
		js.go#L174: 		return fmt.Sprintf(" /* %s */null ", strings.ReplaceAll(err.Error(), "*/", "* /"))
		url.go#L157: 		return strings.ReplaceAll(s, ",", "%2c")

	internal/profile
		profile.go#L202: 		file := strings.TrimSpace(strings.ReplaceAll(p.Mapping[i].File, "(deleted)", ""))

	net/http
		server.go#L2940: 			r2.URL.RawQuery = strings.ReplaceAll(r.URL.RawQuery, ";", "&")

	net/http/internal/testcert
		testcert.go#L65: func testingKey(s string) string { return strings.ReplaceAll(s, "TESTING KEY", "PRIVATE KEY") }

	path/filepath
		path.go#L170: 	return strings.ReplaceAll(path, string(Separator), "/")
		path.go#L180: 	return strings.ReplaceAll(path, "/", string(Separator))

	text/template
		exec.go#L105: 	return strings.ReplaceAll(str, "%", "%%")