Converts a hexadecimal value to its decimal equivalent.
XTD(expression)
expression is any valid DataBasic expression.
Only the characters 0-9 and A-F are valid. Conversion ceases at the first invalid character.
Returns the decimal equivalent of expression.
DTX function, OCONV function, FMT function.
V = XTD(“3A35”)
assigns the value 14901 (the decimal equivalent of the hexadecimal value X’3A35’) to the variable V.