CFLFromBase64StringToText Procedure

  • 2 minutes to read

Codeunit CFL Base64 Convert

Decodes a Base64 encoded BigText to text. Handles large Base64 strings that exceed the Text data type limit.

Overloads

Name Description
CFLFromBase64StringToText(BigText): Text Decodes a Base64 encoded BigText to text.
CFLFromBase64StringToText(Text): Text Decodes a Base64 encoded string to text.

CFLFromBase64StringToText(BigText) Procedure

Decodes a Base64 encoded BigText to text. Handles large Base64 strings that exceed the Text data type limit.

Signature

CFLFromBase64StringToText(Value: BigText) ReturnValue: Text

Parameters

Value BigText

The Base64 encoded BigText to decode.

Returns

Text

The decoded text.

CFLFromBase64StringToText(Text) Procedure

Decodes a Base64 encoded string to text.

Signature

CFLFromBase64StringToText(Value: Text) ReturnValue: Text

Parameters

Value Text

The Base64 encoded string to decode.

Returns

Text

The decoded text.