func net/url.unescape
14 uses
net/url (current package)
url.go#L183: return unescape(s, encodeQueryComponent)
url.go#L194: return unescape(s, encodePathSegment)
url.go#L199: func unescape(s string, mode encoding) (string, error) {
url.go#L600: if userinfo, err = unescape(userinfo, encodeUserPassword); err != nil {
url.go#L606: if username, err = unescape(username, encodeUserPassword); err != nil {
url.go#L609: if password, err = unescape(password, encodeUserPassword); err != nil {
url.go#L640: host1, err := unescape(host[:zone], encodeHost)
url.go#L644: host2, err := unescape(host[zone:i], encodeZone)
url.go#L648: host3, err := unescape(host[i:], encodeHost)
url.go#L662: if host, err = unescape(host, encodeHost); err != nil {
url.go#L677: path, err := unescape(p, encodePath)
url.go#L702: p, err := unescape(u.RawPath, encodePath)
url.go#L741: frag, err := unescape(f, encodeFragment)
url.go#L765: f, err := unescape(u.RawFragment, encodeFragment)
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |