- Introduction to WorkXpress
- Building Your Application
- Examples and Best Practices
- Technical Manual
The URL Decode function (URL_DECODE) takes the input of a field value and decodes it using RFC 3986. This function is most commonly used when communicating with a third party system that send values that are url encoded.
The URL Decode function has one input parameter:
Allowed Inputs: field value
The builder can enter one field value. The builder should use the Query Builder to choose a field that contains a value.
The output of the URL Decode function is a string in which the sequences with percent (%) signs followed by two hex digits have been replaced with literal characters.
URL_DECODE(“This%20%26%20That”) returns This & That