En el enlace que te ha puesto Román está explicada cada función y además con un ejemplo
Cita:
IntToStr
Prototype procedure IntToStr(input : integer; var output : array[6] of char);
Returns Nothing.
Description Converts input integer number to a string. The output string is right justified and the remaining positions on the left (if any) are filled with blanks.
Parameters : - input: integer number to be converted
- output: destination string
Requires Nothing.
Example
var input : integer;
txt : string[6];
//...
input := -4220;
IntToStr(input, txt); // txt is ' -4220'
|