XTD


The XTD() function converts hexadecimal number into its decimal equivalent.

 

COMMAND SYNTAX

XTD(expression)

 

SYNTAX ELEMENTS

expression should evaluate to a valid hexadecimal string.

 

NOTES

The conversion process will halt at the first character that is not a valid base 16 character in the set [0-9, A-F or a-f].

See also DTX.

 

EXAMPLES

A = "FF"
CRT XTD(A)


jBC