>  Docs Center  >  Libraries  >  Galloy  >  mg_base64decode
Libraries

mg_base64decode

mg_base64decode.pro (mglib)

Decode a string in Base64, performs the inverse operation as MG_BASE64ENCODE.

Syntax


result = mg_base64decode(s)

Return value


string

Parameters


s in required type=string

string to decode

Examples


Try:

IDL> s = 'username: password' IDL> print, s, format='(%"Original string: \"%s\"")' Original string: "username: password" IDL> enc = mg_base64encode(s) IDL> print, enc, format='(%"Encoded string: \"%s\"")' Encoded string: "dXNlcm5hbWU6IHBhc3N3b3Jk" IDL> dec = mg_base64decode(enc) IDL> print, dec, format='(%"Decoded string: \"%s\"")' Decoded string: "username: password"



© 2024 NV5 Geospatial Solutions, Inc. |  Legal
My Account    |    Contact Us