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
相关用法
- GO PathEscape用法及代码示例
- GO ParseAddress用法及代码示例
- GO ParseUint用法及代码示例
- GO ParseIP用法及代码示例
- GO ParseMediaType用法及代码示例
- GO ParseInt用法及代码示例
- GO ParseCIDR用法及代码示例
- GO ParseInLocation用法及代码示例
- GO ParseDuration用法及代码示例
- GO ParseFile用法及代码示例
- GO Parse用法及代码示例
- GO ParseAddressList用法及代码示例
- GO ParseBool用法及代码示例
- GO ParseQuery用法及代码示例
- GO ParseFloat用法及代码示例
- GO ParsePKIXPublicKey用法及代码示例
- GO PutUvarint用法及代码示例
- GO PlainAuth用法及代码示例
- GO Print用法及代码示例
- GO Pow10用法及代码示例
注:本文由纯净天空筛选整理自golang.google.cn大神的英文原创作品 PathUnescape。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。