Purpose
Returns the Base64-decoded version of the supplied string.
Syntax
Base64Decode (String)
String |
The Base64-encoded string that you want decoded. |
Example
Dim B as Binary
Dim S as String
B = "text"
Debug "Original = " & B
S = Base64Encode(B)
Debug "Encoded = " & S
Debug "Decoded = " & Base64Decode(S)
|