History  | 
Base64Decode (general internal functions) 
Purpose 
Returns the Base64-decoded version of the supplied string. 
Syntax 
Base64Decode (String) 
 Example 
Dim B as Binary 
Dim S as String 
B = "text" 
Debug "Original = " & B 
S = Base64Encode(B) 
Debug "Encoded = " & S 
Debug "Decoded = " & Base64Decode(S) 
 | ||||