Revision: 8011
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at August 26, 2008 17:12 by Nix
Initial Code
function hexaToInt(s : string) : Int64; begin if (s <> '') and (s[1] <> '$') then result := strToInt64('$' + s ) else result := strToInt64(s); end;
Initial URL
Initial Description
Works great ;)
Initial Title
Hexadecimal to Integer
Initial Tags
Initial Language
Delphi