Icon Base64Decode

Unit: Internal

Available In: Client and Server Applications

function Base64Decode(const Value: String): String

The Base64Decode function decodes the base64-encoded string input parameter. The return value is a String value.

Information This function will throw an exception if the string input parameter is not a valid base64-encoded string.

Examples

Y := Base64Encode('Hello World');
X := Base64Decode(Y);  // X is 'Hello World'
Image