Documentation Index
Fetch the complete documentation index at: https://www.integrate.io/docs/llms.txt
Use this file to discover all available pages before exploring further.
Description
Converts a byte array in a given encoding to string.Syntax
ByteArrayToString(byte_array[, charset_expression])
Arguments
byte_array - a byte array. charset_expression - string_expression indicating the input encoding. The default is UTF-8. See the list of available character sets in https://docs.oracle.com/javase/7/docs/technotes/guides/intl/encoding.doc.html.Examples
ByteArrayToString(GetBytes('Hello World','UTF-8'),'UTF-8') returns ‘Hello World’