rawurlencode

rawurlencode

[code]
func Rawurlencode(str string) string {
	return strings.Replace(url.QueryEscape(str), "+", "%20", -1)
}
[/code]