value | A STRING value containing the data to decode. |
Return: | DecodeBase64 returns a DATA value. |
The DecodeBase64 function returns a DATA value containing the decoded binary data.
Example:
IMPORT STD; str:='AQIDBAU='; DecodedData:= STD.Str.DecodeBase64(str); DecodedData;
See Also: EncodeBase64