From_ByteArray_To_String

Description

This activity converts a byte array to an UTF8 encoded string. The activity automatically removes the BOM if it matches that of the given encoding.


Encoding

AutoDetectEncoding InArgument<Boolean>

The default encoding is UTF-8. Set this argument to True to make DocsMarshal auto detect the encoding of the given bytes. Make sure that the byte array is encoded using the BOM(Byte Order Mark): a few bytes that allow to understand which is the encoding of the given byte array.

Encoding InArgument<Encoding>

The default encoding is UTF-8. Set this argument if the given byte array is an another encoding. If you don't know in which encoding is it set to true AutoDetectEncoding.


Input Value

Value InArgument<Byte[]> REQUIRED

The byte array to be converted into a string.


Misc