Small company logo:
   History
 
Advertising banner:
 
 Base64Decode
Home • Help • Customization Tools • FCAS • Language Reference • Base64Decode
 
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)