$Lstr C2X: Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
(Automatically generated page update)
 
(36 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{{DISPLAYTITLE:$Lstr_C2X}}
{{DISPLAYTITLE:$Lstr_C2X}}
<span class="pageSubtitle"><section begin="desc" />Convert byte string to hexadecimal<section end="desc" /></span>
<span class="pageSubtitle">Convert byte string to hexadecimal</span>


<p class="warning">Most Sirius $functions have been deprecated in favor of Object Oriented methods. The OO equivalent for the $Lstr_C2X function is [[to be entered]].</p>
<p class="warn"><b>Note: </b>Many $functions have been deprecated in favor of Object Oriented methods. The OO equivalent for the $Lstr_C2X function is the <var>[[StringToHex (String function)|StringToHex]]</var> function.</p>


This function converts a byte string into its hexadecimal encoding. It is identical to <var>[[$C2X]]</var>, except it is [[Longstrings|longstring]] capable.


 
The <var>$Lstr_C2X</var> function accepts one argument and returns a string result which is the hexadecimal encoding of that argument.  
This function converts a byte string into its hexadecimal encoding. It is identical to $C2X (see the ''"Model 204 User Language Manual"''), except it is longstring capable.
 
The $Lstr_C2X function accepts one argument and returns a string result which is the hexadecimal encoding of that argument.  


The first argument is a longstring.  
The first argument is a longstring.  


The returned value is the hexadecimal encoding of the argument string.
The returned value is the hexadecimal encoding of the argument string.
==Syntax==
==Syntax==
<p class="syntax"><section begin="syntax" /> %CODED = $Lstr_C2X(string)
<p class="syntax"><span class="term">%coded</span> = <span class="literal">$Lstr_C2X</span>(<span class="term">string</span>)
<section end="syntax" /></p>
<p class="caption">$Lstr_C2X Function
</p>
</p>
<p class="caption">%CODED is set to the hexadecimal encoding of :hp1.string:ehp1..</p>


<p>
<var class="term">%coded</var> is set to the hexadecimal encoding of <var class="term">string</var></p>


For example, the following code
==Usage notes==
<p class="code"> PRINT $Lstr_C2X('Red rum')
<ul>
</p>
<li><var>[[$Lstr_X2C]]</var> is the inverse of <var>$Lstr_C2X</var>.  
would print <tt>D985844099A494</tt>, which is the hexadecimal representation of the EBCDIC characters "Red rum".  
</ul>


$Lstr_X2C (:hdref refid=x2cl.) is the inverse of $Lstr_C2X.  
==Example==
The following code would print <code>D985844099A494</code>, which is the hexadecimal representation of the EBCDIC characters "Red rum".  


This $function is new in Version 6.8 of the ''[[Sirius Mods]]''.<p>
<p class="code">Print $Lstr_C2X('Red rum')
</p>


==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_C2X
</p>
[[Category:$Functions|$Lstr_C2X]]
[[Category:$Functions|$Lstr_C2X]]

Latest revision as of 22:51, 20 September 2018

Convert byte string to hexadecimal

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

This function converts a byte string into its hexadecimal encoding. It is identical to $C2X, except it is longstring capable.

The $Lstr_C2X function accepts one argument and returns a string result which is the hexadecimal encoding of that argument.

The first argument is a longstring.

The returned value is the hexadecimal encoding of the argument string.

Syntax

%coded = $Lstr_C2X(string)

%coded is set to the hexadecimal encoding of string

Usage notes

Example

The following code would print D985844099A494, which is the hexadecimal representation of the EBCDIC characters "Red rum".

Print $Lstr_C2X('Red rum')

Products authorizing $Lstr_C2X