Miscellaneous Functions
URL_ENCODE
URL_ENCODE(Value)
Translates a text into application/x-www-form-urlencoded format.
| Parameter | Type | Description |
|---|---|---|
Value | Text | Value to convert |
| → Result | Text | Value converted to application/x-www-form-urlencoded format. |
Example:
URL_ENCODE("http://www.test.com") → "http%3A%2F%2Fwww.test.com"
URL_DECODE
URL_DECODE(Value)
Decodes an application/x-www-form-urlencoded text.
| Parameter | Type | Description |
|---|---|---|
Value | Text | Value to convert |
| → Result | Text | Decoded Value. |
Example:
URL_DECODE("http%3A%2F%2Fwww.test.com") → "http://www.test.com/"