Table of Content
HAL Forum
function string Base64Decode (
string EncodedString)
Description:
Decodes a base 64 encoded string and returns it. NOTE that this IS NOT a bitsafe function (string functions can not handle some bytes) - for bitsafe decoding use AreaBase64Decode
Parameters:
EncodedString String that contains b64 encoded data
// This will run right after HansaWorld has been started
global
updating procedure OnApplicationStartup()
begin

  stopalert(Base64Decode("SGVsbG8gV29ybGQhIQ==")); // B64 encoded "Hello World!!"
  
  return;
end;
Related topics:
««