The Development Library 6-3
CD→
Code to hex: Returns the hex representation of a code (Assembly program) object.
Level 1 -> Level 1
Code -> string
→CD
Hex to Code: Returns the code (Assembly program) object represented by an hex string.
A hex string is a string that only contains the characters ‘0’ to ‘9’ and ‘A’ to ‘F’.
Level 1 -> Level 1
String -> Code
→H
Object to hex: Returns the hex representation of a object.
Level 1 -> Level 1
Object -> string
H→
Hex to object: Returns the object represented by a hex string.
A hex string is a string that only contains the characters ‘0’ to ‘9’ and ‘A’ to ‘F’.
Note: if the string does not represent a valid object, this can corrupt your memory;
Level 1 -> Level 1
String -> Object
S→H
String to hex: Returns the hex representation of the characters of a string.
Example: “A” S→H → “14”
Level 1 -> Level 1
String -> String
H→S
Hex to string: Returns the string whose data are represented by a hex string.
A hex string is a string that only contains the characters ‘0’ to ‘9’ and ‘A’ to ‘F’.
Example: “14” H→S → “A”
Level 1 -> Level 1
String -> String
SREV
String reverse: Gives the mirror image of a string.
Example: “ABC” SREV
→ “CBA”
Level 1 -> Level 1
String -> String