$Lstr Base64 Encode: Difference between revisions
m (1 revision) |
m (1 revision) |
||
Line 15: | Line 15: | ||
<p class="syntax"><section begin="syntax" />%CODED = $Lstr_Base64_Encode(string) | <p class="syntax"><section begin="syntax" />%CODED = $Lstr_Base64_Encode(string) | ||
<section end="syntax" /></p> | <section end="syntax" /></p> | ||
<p | <p> | ||
</p> | </p> | ||
<p class="caption">%CODED is set to the base 64 encoding of ''string''</p> | <p class="caption">%CODED is set to the base 64 encoding of ''string''</p> |
Revision as of 00:15, 26 October 2012
Convert byte string to base 64
Most Sirius $functions have been deprecated in favor of Object Oriented methods. The OO equivalent for the $Lstr_Base64_Encode function is the StringToBase64 (String function).
This function converts a byte string into its base 64 encoding. It is identical to $Base64_Encode, except it is longstring capable.
The $Lstr_Base64_Encode function accepts one argument and returns a string result which is the base 64 encoding of that argument.
The first argument is a longstring.
The returned value is the base 64 encoding of the argument string.
Syntax
<section begin="syntax" />%CODED = $Lstr_Base64_Encode(string) <section end="syntax" />
For example, given the following argument of length 3:
%JUNK = $Lstr_Base64_Encode($X2C('001083'))
%JUNK is set to the byte string (of length 4) represented in character as 'ABCD'.
$Lstr_Base64_Decode is the inverse of $Lstr_Base64_Encode.
This $function is new in Version 6.8 of the Sirius Mods.
Products authorizing $Lstr_Base64_Encode
- Sirius functions
- Fast/Unload User Language Interface
- Janus Open Client
- Janus Open Server
- Janus Sockets
- Janus Web Server
- Japanese functions
- Sir2000 Field Migration Facility
64_Encode