Convert an integer value to a decimal string.
Source position: sysstrh.inc line 119
| function IntToStr( | 
| Value: LongInt | 
| ):string; | 
| Value: Int64 | 
| ):string; | 
| Value: QWord | 
| ):string; | 
IntToStr converts Value to its string representation. The resulting string has only as much characters as needed to represent the value. If the value is negative a minus sign is prepended to the string.
None.
| 
 | Convert an integer value to a hexadecimal string. | |
| 
 | Convert a string to an integer value. | |
| 
 | Unsigned integer to String. | 
Program Example74; { This program demonstrates the IntToStr function } Uses sysutils; Var I : longint; Begin or:=0 to 31 do begin Writeln (IntToStr(1 shl I)); Writeln (IntToStr(15 shl I)); end; End.