Name
easy:Unescape -- URL decodes the given string
Synopsis
e$ = easy:Unescape(s$)
Function
This function converts the given URL encoded input string to a "plain string" and returns that. All input characters that are URL encoded (%XX where XX is a two-digit hexadecimal number) are converted to their binary versions.

Inputs
s$
string to unescape
Results
e$
unescaped string

Show TOC