<< Click to Display Table of Contents >>
Navigation: Project > Scripts > ST language > Embedded functions >
hextoint(Input) - converts hex value into integer.
inttohex(Input) - converts integer value into hex.
Example:
string a = inttohex(255);
print(a);
Response:
a = "ff";