URLDecode function
String / Filename routines
Return to Introduction  Previous page  Next page
Unit
acUtils  

Declaration
function URLDecode(const Str: String): String;  

Description
The URLEncode function turns all escape codes like like %20 or %3C into normal characters. So if the Str passed as parameter was "Hello%20World", the output string will be "Hello World".  

See also
URLEncode function.