Delphi Programming RTL Reference|By Category|Alphabetically|By Unit
function IntToHex(iValue, Digits: Integer): string;
Converts an integer to a string - hex representation.
Digits indicates the minimum number of hexadecimal digits to return.
var i : integer;
hex15: string;
i:=15;
hex15 = IntToHex(i,8);
//hex15='F'
|
Base Conversions, and more
Routines for converting Int to Bin, Int to Hex, Int to Roman and vice versa.
IntToStr,
|
Free Delphi code snippet inside every Delphi Newsletter! |
|
|
|
Got some code to share? Got a question? Need some help? |
|
|