StringToBase64 (String function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
m (→‎See also: link repair)
 
(28 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{{Template:String:StringToBase64 subtitle}}
{{Template:String:StringToBase64 subtitle}}


This [[Intrinsic classes|intrinsic]] function returns the base-64 encoded value of the method object string.  
The <var>StringToBase64</var> [[Intrinsic classes|intrinsic]] function returns the base64 encoded value of the method object string.
                                                                                                             
 
StringToBase64 is available as of version 7.2 of the [[Sirius Mods]].                                         
==Syntax==
==Syntax==
{{Template:String:StringToBase64 syntax}}
{{Template:String:StringToBase64 syntax}}
===Syntax terms===
===Syntax terms===
<dl>                                                                                                          
<table class="syntaxTable">
<dt>%outStr                                                                                                   
<tr><th>%outString</th>
<dd>A string variable to receive the base-64 encoded value of the method object string.                      
<td>A string variable to receive the base64 encoded value of the method object <var class="term">string</var>.</td></tr>
<dt>string                                                                                                    
<tr><th>string</th>
<dd>The string to be base-64 encoded.                                                                        
<td>The string to be base64 encoded.</td></tr>
                                                                                                             
</table>
</dl>                                                                                                        
 
==Usage notes==
==Usage notes==
*Base-64 encoding is useful for encoding strings that might contain binary or other characters that could cause problems in certain contexts. For example, binary characters can be problematic when sent in e-mail. <br>Base-64 encoding is an alternative to hexadecimal encoding. Hexadecimal encoding has the advantage that it's simpler, but as the disadvantage that it requires two bytes for every encoded byte. Base-64 encoding, because it uses more characters (64, as the name would suggest), only requires four bytes for every three encoded bytes.                        
<ul><li>A complete explanation of base64 encoding can be easily found on the Internet or in many software textbooks.
*A complete explanation of base-64 encoding can be easily found on the Internet or in many software textbooks.
<li>Base64 encoding is useful for encoding strings that might contain binary or other characters that could cause problems in certain contexts. For example, binary characters can be problematic when sent in e-mail.<li>Base64 encoding is an alternative to hexadecimal encoding. Hexadecimal encoding has the advantage that it's simpler, but as the disadvantage that it requires two bytes for every encoded byte. Base64 encoding, because it uses more characters (64, as the name would suggest), only requires four bytes for every three encoded bytes.
*The StringToBase64 function returns the standard base-64 encoding of a  string, where the encoded string is padded out to an even multiple of four bytes by appending equal signs.                                                                              
<li>The <var>StringToBase64</var> function returns the standard base64 encoding of a  string, where the encoded string is padded out to an even multiple of four bytes by appending equals signs.
*The inverse of StringToBase64 is [[Base64toString (String function)|Base64toString]]
<li><var>StringToBase64</var> is available as of <var class="product">Janus SOAP</var> Version 7.2.</ul>


==Examples==
==Examples==
                                                                                                             
The following statement displays <code>8PHy8/T19vf4+Q==</code>:
The following statement displays ''''8PHy8/T19vf4+Q=='''':  
<p class="code">[[PrintText statement|printText]] {'0123456789':stringTobase64}
    [[Intrinsic classes#printtext|printText]] {'0123456789':stringTobase64}
</p>


===See also===                                                     
==See also==
[[List of intrinsic String methods]]
<ul>
<li>The inverse of <var>StringToBase64</var> is [[Base64ToString (String function)|Base64ToString]]
</ul>


[[Category:Intrinsic String methods|StringToBasic64 function]]
{{Template:String:StringToBase64 footer}}
[[Category:Intrinsic methods]]

Latest revision as of 22:29, 25 April 2018

Convert an Ebcdic string to base 64 (String class)


The StringToBase64 intrinsic function returns the base64 encoded value of the method object string.

Syntax

%outString = string:StringToBase64

Syntax terms

%outString A string variable to receive the base64 encoded value of the method object string.
string The string to be base64 encoded.

Usage notes

  • A complete explanation of base64 encoding can be easily found on the Internet or in many software textbooks.
  • Base64 encoding is useful for encoding strings that might contain binary or other characters that could cause problems in certain contexts. For example, binary characters can be problematic when sent in e-mail.
  • Base64 encoding is an alternative to hexadecimal encoding. Hexadecimal encoding has the advantage that it's simpler, but as the disadvantage that it requires two bytes for every encoded byte. Base64 encoding, because it uses more characters (64, as the name would suggest), only requires four bytes for every three encoded bytes.
  • The StringToBase64 function returns the standard base64 encoding of a string, where the encoded string is padded out to an even multiple of four bytes by appending equals signs.
  • StringToBase64 is available as of Janus SOAP Version 7.2.

Examples

The following statement displays 8PHy8/T19vf4+Q==:

printText {'0123456789':stringTobase64}

See also