[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Convert an integer value to a hexadecimal string.
Source position: sysstrh.inc line 120
function IntToHex( |
Value: LongInt; |
Digits: Integer |
):string; |
Value: Int64; |
Digits: Integer |
):string; |
Value: QWord; |
Digits: Integer |
):string; |
Value: Int8 |
):string; |
Value: UInt8 |
):string; |
Value: Int16 |
):string; |
Value: UInt16 |
):string; |
Value: Int32 |
):string; |
Value: UInt32 |
):string; |
Value: Int64 |
):string; |
Value: UInt64 |
):string; |
IntToHex converts Value to a hexadecimal string representation. The result will contain at least Digits characters. If Digits is less than the needed number of characters, the string will NOT be truncated. If Digits is larger than the needed number of characters, the result is padded with zeroes.
None.
|
Convert an integer value to a decimal string. |
Program Example73; { This program demonstrates the IntToHex function } Uses sysutils; Var I : longint; Begin For I:=0 to 31 do begin Writeln (IntToHex(1 shl I,8)); Writeln (IntToHex(15 shl I,8)) end; End.