当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


GO PathUnescape用法及代码示例


GO语言"net/url"包中"PathUnescape"函数的用法及代码示例。

用法:

func PathUnescape(s string)(string, error)

PathUnescape 执行 PathEscape 的逆变换,将 "%AB" 形式的每个 3 字节编码子串转换为 hex-decoded 字节 0xAB。如果任何 % 后面没有跟两个十六进制数字,则返回错误。

PathUnescape 与 QueryUnescape 相同,只是它不会将 '+' 转义到“ ”(空格)。

例子:

package main

import (
	"fmt"
	"log"
	"net/url"
)

func main() {
	escapedPath := "my%2Fcool+blog&about%2Cstuff"
	path, err := url.PathUnescape(escapedPath)
	if err != nil {
		log.Fatal(err)
	}
	fmt.Println(path)

}

输出:

my/cool+blog&about,stuff

相关用法


注:本文由纯净天空筛选整理自golang.google.cn大神的英文原创作品 PathUnescape。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。