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


GO PathEscape用法及代码示例


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

相关用法


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