GO语言"net/url"包中"PathEscape"函数的用法及代码示例。
用法:
func PathEscape(s string) string
PathEscape 对字符串进行转义,以便可以将其安全地放置在 URL 路径段中,并根据需要将特殊字符(包括 /)替换为 %XX 序列。
例子:
package main
import (
"fmt"
"net/url"
)
func main() {
path := url.PathEscape("my/cool+blog&about,stuff")
fmt.Println(path)
}
输出:
my%2Fcool+blog&about%2Cstuff
相关用法
- GO PathUnescape用法及代码示例
- 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大神的英文原创作品 PathEscape。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。