Rexx - X2C
This method returns the character conversion of a hexstring value.
Syntax
X2C(value)
Parameters
value − This is the hexadecimal value which needs to be converted to a string value.
Return Value
This method returns the character conversion of a hexstring value.
Example
/* Main program */
say X2C("465 6c 6f")
say X2C("37 73")
When we run the above program we will get the following result.
Output
elo 7s
rexx_built_in_functions.htm
Advertisements