Icon DecodeURL

Unit: WebCore

Available In: Client and Server Applications

function DecodeURL(const URL: String): String

The DecodeURL function returns the decoded version of the encoded URL input parameter. The return value is a String value.

This function is the analog of the EncodeURL function.

Examples

X := DecodeURL('https://localhost/home%20page.html');  // X is 'https://localhost/home page.html'
Image