BitXtoD
The BitXtoD function converts a hexadecimal string to a decimal number.
nNumber = BitXtoD( sHex ) |
nNumber is a decimal number.
sHex is a hexadecimal string representation of a number.
The hexadecimal string representation has the lowest-order bit at the right end of the string. The function does not care whether the string contains leading zeros for the highest order bits that are not set.
The following script converts a hexadecimal string representation to a decimal number. Note that the decimal number is printed using %u because it is considered an unsigned (i.e., 0 or positive) integer.
|
-- pick a hexadecimal number |
|
-- convert to a number |
|
-- prints 25 hex --> 37 decimal |
Mira Pro x64 Script User's Guide, Copyright Ⓒ 2023 Mirametrics,
Inc. All Rights Reserved.