The util.Strings class / util.Strings methods |
Converts the string passed as parameter to a Base64 encoded string.
util.Strings.base64EncodeFromString( source STRING ) RETURNING result STRING
The util.Strings.base64EncodeFromString() method first converts the string passed as parameter to an array of bytes, then it converts the array of bytes the a Base64 representation, and returns the resulting Base64 encoded string.
IMPORT util MAIN DISPLAY util.Strings.base64EncodeFromString( "ForĂȘt" ) END MAIN