Internet Direct (Indy) Version 9.0.1 Beta
URLDecode
Converts a URL-Encoded string to a US-ASCII string.

function URLDecode(ASrc: string): string;
Parameters
ASrc: string
URL-encoded string to be converted.

Returns
String - The un-encoded ASCII representation of the URL.

Description
URLDecode is a String function that converts a URL-encoded string to its representation in the US-ASCII character set.

URLDecode is based on the URL character encoding rules as described in the Internet Standards document Uniform Resource Locators (URL), RFC 1738 , by Tim Berners-Lee.

URLDecode can used to reverse any string encoding performed using URLEncode.