decode_url
Decodes URL encoded strings.
decode_url(string: blob|string) -> blob
Description
Section titled “Description”Decodes URL encoded strings or blobs, converting percent-encoded sequences back to their original characters.
string: blob|string
Section titled “string: blob|string”The URL encoded string to decode.
Examples
Section titled “Examples”Decode a URL encoded string
Section titled “Decode a URL encoded string”from {input: "Hello%20World%20%26%20Special%2FChars%3F"}decoded = input.decode_url()
{ input: "Hello%20World%20%26%20Special%2FChars%3F", decoded: "Hello World & Special/Chars?",}