$IHexA: Difference between revisions

From m204wiki
Jump to navigation Jump to search
(Automatically generated page update)
(Automatically generated page update)
 
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="warn"><b>Note: </b>Most Sirius $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>
<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.  

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