Description
The URLDecode function is used to decode a value that has been encoded using URL encoding. It reverses the process of URL encoding, converting percent-encoded characters back to their original form.
Syntax:
URLDecode(Value)
Example:
URLDecode(“http%3a%2f%2fwww.google.com%3fid%3d334%26od%3dtest”) -> “http://www.google.com?id=334&od=test”
This example decodes the URL-encoded string “http%3a%2f%2fwww.google.com%3fid%3d334%26od%3dtest” using the URLDecode function, resulting in the original URL http://www.google.com?id=334&od=test.
Figure11: Rule
Figure12: Preview
Usage
The URLDecode function is essential for processing data received from URLs or form submissions, restoring encoded values to their original representations. It ensures accurate interpretation of special characters and maintains data integrity in web applications.