URI Decode | DECODE_URI

Syntax

DECODE_URI( [value] )

Parameters

value
A URI encoded TEXT value to decode. If it is not a TEXT value, it will be converted to one with the STRING operation.

Return Value

A TEXT value. If VALUE is not a valid URI encoded TEXT value, an empty TEXT value will be returned.

Description

Decode a TEXT value as a URI component.

Examples

DECODE_URI("%3B%2C%2F%3F%3A%40%26%3D%2B%24") # returns ";,/?:@&=+$"