Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

The Base64EncodeW method encodes is used to encode a Unicode string to using the Base64 scheme. The method returns a string.

See also The Base64Decode method.

Method call syntaxSyntax for method invocation:

Code Block
function Base64EncodeW (data_in: String): String

Method arguments:

  1. data_in – is a required argument. Sets a string to be encodedIt specifies the string that you want to encode.

Example. Dencode Decode a string from Unicode string to Base64 then , encode it back and put to display it in the debug logstring.

Code Block
var test = Base64Decode("MAAzAC0AMAA3AC0AMgAwADEAOQAgADEANQA6ADMAOQA6ADQAMAA6AA0ACgB0AGUAcwB0ACAAMQANAAoAMAAzAC0AMAA3AC0AMgAwADEAOQAgADEANQA6ADQAMgA6ADIAMQA6AA0ACgB0AGUAcwB0ACAAMgA=",true);
DebugLogString("----->"+test);
var res = Base64EncodeW(test);
DebugLogString("----->"+res);

If the Base64Decode method received the " true " parameter, the script will have the following output:

...