System.SysUtils.StrToUInt64
Delphi
function StrToUInt64(const S: string): UInt64;
C++
extern DELPHI_PACKAGE unsigned __int64 __fastcall StrToUInt64(const System::UnicodeString S)/* overload */;
Propriétés
Type | Visibilité | Source | Unité | Parent |
---|---|---|---|---|
function | public | System.SysUtils.pas System.SysUtils.hpp |
System.SysUtils | System.SysUtils |
Description
Convertit en nombre une chaîne qui représente un entier (notation décimale ou hexadécimale).
StrToUInt64 convertit en nombre la chaîne S, qui représente un nombre de type entier en notation décimale ou hexadécimale. La valeur de sortie est un entier non signé sur 64 bits. Si S ne représente pas un nombre valide, StrToUInt64 déclenche une exception EConvertError.
StrToUInt64 prend en charge les chaînes dans les notations hexadécimales suivantes :
- Delphi : 0$1234 et 0x1234.
- C++ : 0x1234.