web.url_decode

Decodes an encoded URL.

public static String web.url_decode( String message );

Arguments

Argument
Description
message
The encoded URL to decode.

Return Values

This function returns the decoded URL.

Parameterization

The message argument can be parameterized.

Example

In the following example, the URL https://www.google.com is encoded.

Then, the encoded URL assigned to the variable encodedURL is decoded.

Copy code
String encodedURL = web.url_encode("https://www.google.com");
String decodedURL = web.url_decode(encodedURL);