$Lstr Base64 Encode: Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
(Automatically generated page update)
 
(30 intermediate revisions by 4 users not shown)
Line 2: Line 2:
<span class="pageSubtitle">Convert byte string to base 64</span>
<span class="pageSubtitle">Convert byte string to base 64</span>


<p class="warning">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)]].</p>
<p class="warn"><b>Note: </b>Many $functions have been deprecated in favor of Object Oriented methods. The OO equivalent for the $Lstr_Base64_Encode function is <var>[[StringToBase64 (String function)|StringToBase64]]</var>.</p>


This function converts a byte string into its base 64 encoding. It is identical to [[$Base64_Encode]], except it is longstring capable.  
This function converts a byte string into its base 64 encoding. It is identical to [[$Base64_Encode]], except it is longstring capable.  
Line 13: Line 13:


==Syntax==
==Syntax==
<p class="syntax"><section begin="syntax" />%CODED = $Lstr_Base64_Encode(string)
<p class="syntax"><span class="term">%coded</span> = <span class="literal">$Lstr_Base64_Encode</span>(<span class="term">string</span>)
<section end="syntax" /></p>
<p class="caption">$Lstr_Base64_Encode Function
</p>
</p>
<p class="caption">%CODED is set to the base 64 encoding of ''string''</p>


For example, given the following argument of length 3:
<p>%coded is set to the base 64 encoding of <var class="term">string</var></p>


<p class="code"> %JUNK = $Lstr_Base64_Encode($X2C('001083'))
==Usage notes==
</p>
<ul>
<li>[[$Lstr_Base64_Decode]] is the inverse of $Lstr_Base64_Encode.


%JUNK is set to the byte string (of length 4) represented in character as 'ABCD'.  
<li>This $function is new in Version 6.8 of the <var class="product">[[Sirius Mods]]</var>.
</ul>


[[$Lstr_Base64_Decode]] is the inverse of $Lstr_Base64_Encode.
==Example==
Given the following argument of length 3:


This $function is new in Version 6.8 of the <var class="product">[[Sirius Mods]]</var>.<p>
<p class="code">%junk = $Lstr_Base64_Encode($X2C('001083'))
</p>


<var class="term">%junk</var> is set to the byte string (of length 4) represented in character as 'ABCD'.
==Products authorizing {{PAGENAMEE}}==
<ul class="smallAndTightList">
<ul class="smallAndTightList">
<li>[[Sirius functions]]</li>
<li>[[List of $functions|Sirius functions]]</li>
<li>[[Fast/Unload User Language Interface]]</li>
<li>[[Fast/Unload User Language Interface]]</li>
<li>[[Janus Open Client]]</li>
<li>[[Media:JoclrNew.pdf|Janus Open Client]]</li>
<li>[[Janus Open Server]]</li>
<li>[[Media:JosrvrNew.pdf|Janus Open Server]]</li>
<li>[[Janus Sockets]]</li>
<li>[[Janus Sockets]]</li>
<li>[[Janus Web Server]]</li>
<li>[[Janus Web Server]]</li>
<li>[[Japanese functions]]</li>
<li>Japanese functions</li>
<li>[[Sir2000 Field Migration Facility]]</li>
<li>[[Media:SirfieldNew.pdf|Sir2000 Field Migration Facility]]</li>
 
</ul>
</ul>
   
   
</p>
<p class="caption">Products authorizing $Lstr_Base64_Encode
</p>
[[Category:$Functions|$Lstr_Base64_Encode]]
[[Category:$Functions|$Lstr_Base64_Encode]]

Latest revision as of 22:51, 20 September 2018

Convert byte string to base 64

Note: Many $functions have been deprecated in favor of Object Oriented methods. The OO equivalent for the $Lstr_Base64_Encode function is StringToBase64.

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

%coded = $Lstr_Base64_Encode(string)

%coded is set to the base 64 encoding of string

Usage notes

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'.

Products authorizing $Lstr_Base64_Encode