url decode - part-cw/lambdanative GitHub Wiki
(url-decode str)
Decodes a string in percent-encoding.
Parameter | Description |
---|---|
str | String to be decoded |
Example
> (url-decode "this%20is%20a%20test")
"this is a test"
Decodes a string in percent-encoding.
Parameter | Description |
---|---|
str | String to be decoded |
> (url-decode "this%20is%20a%20test")
"this is a test"