url encode - part-cw/lambdanative GitHub Wiki
(url-encode str)
Encodes a string using percent-encoding.
Parameter | Description |
---|---|
str | String to be encoded |
Example
> (url-encode "this is a test")
"this%20is%20a%20test"
Encodes a string using percent-encoding.
Parameter | Description |
---|---|
str | String to be encoded |
> (url-encode "this is a test")
"this%20is%20a%20test"