$IHexA: Difference between revisions
Jump to navigation
Jump to search
(Automatically generated page update) |
(Automatically generated page update) |
||
(15 intermediate revisions by 3 users not shown) | |||
Line 2: | Line 2: | ||
<span class="pageSubtitle">Convert EBCDIC string to hexadecimal equivalent</span> | <span class="pageSubtitle">Convert EBCDIC string to hexadecimal equivalent</span> | ||
<p class=" | <p class="warn"><b>Note: </b>Many $functions have been deprecated in favor of Object Oriented methods. The OO equivalent for the $IHexA function is the <var>[[StringToHex (String function)|StringToHex]]</var> function.</p> | ||
This function converts an EBCDIC string to its hexadecimal equivalent. | This function converts an EBCDIC string to its hexadecimal equivalent. | ||
Line 11: | Line 11: | ||
==Syntax== | ==Syntax== | ||
<p class="syntax"><span class="term">%HEX</span> = <span class="literal">$IHexA</span>(string) | <p class="syntax"><span class="term">%HEX</span> = <span class="literal">$IHexA</span>(<span class="term">string</span>) | ||
</p> | </p> | ||
<p> | <p> | ||
Line 17: | Line 17: | ||
<p>%HEX is set to the hexadecimal equivalent of '''string'''.</p> | <p>%HEX is set to the hexadecimal equivalent of '''string'''.</p> | ||
==Usage notes== | |||
<p class="code"> %JUNK = $IHexA('ABabc') | <ul> | ||
<li>Because the result string can be at most 255 bytes long and the result string is always twice as long as the input string, any input string longer than 127 bytes, will produce a 254 byte result string representing the first 127 characters in the input string. | |||
</ul> | |||
==Examples== | |||
This statement sets %JUNK to the string <code>C1C2818283</code>: | |||
<p class="code">%JUNK = $IHexA('ABabc') | |||
</p> | </p> | ||
%JUNK | And this statement sets %JUNK to the string <code>40F140</code>: | ||
<p class="code"> %JUNK = $IHexA(' 1 ') | <p class="code">%JUNK = $IHexA(' 1 ') | ||
</p> | </p> | ||
==Products authorizing {{PAGENAMEE}}== | ==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> | <li>Japanese functions</li> | ||
<li>[[Sir2000 Field Migration Facility]]</li> | <li>[[Media:SirfieldNew.pdf|Sir2000 Field Migration Facility]]</li> | ||
</ul> | </ul> |
Latest revision as of 22:51, 20 September 2018
Convert EBCDIC string to hexadecimal equivalent
Note: Many $functions have been deprecated in favor of Object Oriented methods. The OO equivalent for the $IHexA function is the StringToHex function.
This function converts an EBCDIC string to its hexadecimal equivalent.
The $IHexA function accepts one argument and returns a string result that is the hexadecimal representation of the first argument.
The first argument is an arbitrary string.
Syntax
%HEX = $IHexA(string)
%HEX is set to the hexadecimal equivalent of string.
Usage notes
- Because the result string can be at most 255 bytes long and the result string is always twice as long as the input string, any input string longer than 127 bytes, will produce a 254 byte result string representing the first 127 characters in the input string.
Examples
This statement sets %JUNK to the string C1C2818283
:
%JUNK = $IHexA('ABabc')
And this statement sets %JUNK to the string 40F140
:
%JUNK = $IHexA(' 1 ')
Products authorizing $IHexA
- Sirius functions
- Fast/Unload User Language Interface
- Janus Open Client
- Janus Open Server
- Janus Sockets
- Janus Web Server
- Japanese functions
- Sir2000 Field Migration Facility