func strconv.Unquote

24 uses

	strconv (current package)
		quote.go#L368: func Unquote(s string) (string, error) {

	fmt
		scan.go#L871: 		result, err := strconv.Unquote(string(s.buf))

	github.com/aws/aws-sdk-go/aws/endpoints
		v3model.go#L153: 	regex, err := strconv.Unquote(string(b))

	github.com/aws/aws-sdk-go/private/protocol
		jsonvalue.go#L59: 		u, err = strconv.Unquote(v)

	github.com/google/go-cmp/cmp
		report_slices.go#L160: 				line, _ := strconv.Unquote(string(r.Value.(textLine)))

	go.opencensus.io/resource
		resource.go#L81: 			if v, err = strconv.Unquote(v); err != nil {

	go/ast
		import.go#L60: 	t, err := strconv.Unquote(s.(*ImportSpec).Path.Value)
		resolve.go#L116: 			path, _ := strconv.Unquote(spec.Path.Value)

	go/build
		build.go#L899: 				com, err := strconv.Unquote(qcom)
		read.go#L426: 			path, err := strconv.Unquote(quoted)
		read.go#L523: 					q, err := strconv.Unquote(args[:i+1])

	go/doc
		example.go#L273: 		p, err := strconv.Unquote(s.Path.Value)
		reader.go#L514: 						if import_, err := strconv.Unquote(s.Path.Value); err == nil {

	go/parser
		parser.go#L2282: 	s, _ := strconv.Unquote(lit) // go/scanner returns a legal string literal

	go/printer
		nodes.go#L1522: 	s, err := strconv.Unquote(lit.Value)

	golang.org/x/mod/modfile
		read.go#L946: 			p, err := strconv.Unquote(string(line))
		rule.go#L545: 		if t, err = strconv.Unquote(t); err != nil {

	golang.org/x/pkgsite/internal/godoc/dochtml/internal/render
		linkify.go#L676: 						if path, err := strconv.Unquote(spec.Path.Value); err == nil {

	golang.org/x/pkgsite/internal/godoc/internal/doc
		example.go#L207: 		p, err := strconv.Unquote(s.Path.Value)
		reader.go#L518: 						if import_, err := strconv.Unquote(s.Path.Value); err == nil {

	reflect
		type.go#L1175: 			value, err := strconv.Unquote(qvalue)

	text/template/parse
		parse.go#L326: 	t.Name, err = strconv.Unquote(name.val)
		parse.go#L605: 		s, err := strconv.Unquote(token.val)
		parse.go#L715: 		s, err := strconv.Unquote(token.val)