Decode64 Function
Syntax
Decode64[$](Data)
-or-
Decode64B(Data)
Group Miscellaneous
Description
Return a string using the base 64 decoding algorithm.
Decode64B
returns a Byte array.
Parameter Description
Data Return this string's base 64 decoding.
See Also Encode64.
Example
'#Language
"WWB-COM"
Sub Main
Debug.Print Decode64("SGVsbG8gV29ybGQhIQ==") '"Hello
World!!"
End Sub