Description
Decodes a Base64 string into a bytearray.Syntax
Base64Decode(string_expression)
Examples
Base64Decode('aGVsbG8gd29ybGQ=') returns a byte array equivalent to ‘hello world’
Decode a Base64-encoded string into a byte array in your ETL pipeline. Use BASE64DECODE for processing encoded binary data in transformations.
Base64Decode(string_expression)
Base64Decode('aGVsbG8gd29ybGQ=') returns a byte array equivalent to ‘hello world’
Was this page helpful?