( |
|
|
|||
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: | |
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: |