HexToNumber
The HexToNumber function converts a number in hexadecimal format (string) to a number.
Definition
HexToNumber(valor)参数
| 名称 | 说明 | Data type |
|---|---|---|
| valor | Text containing the hexadecimal value to be converted. | string |
示例
The following example converts the hexadecimal value '144e' to a number:
HexToNumber('144e')The result is 5198 (numeric value).
更多信息
更多信息 about the hexadecimal system can be found on Wikipedia.