[Overview][Resource strings][Constants][Types][Procedures and functions][Index] |
Convert hexadecimal value to 64-bit integer
Source position: strutils.pp line 220
function Hex2Dec64( |
const S: string |
):Int64; |
Hex2Dec64 converts the hexadecimal number in S to a 64-bit value and returns the result. It is equivalent to StrToInt('$'+S).
|
Converts a hexadecimal string to a decimal value |