PHP » GoLang |
login |
register |
about
|
rawurldecoderawurldecode[code]
func Rawurldecode(str string) (string, error) {
return url.QueryUnescape(strings.Replace(str, "%20", "+", -1))
}
[/code]
|