Please help, how can i convert a real declared variable into a string one. Is there any function like IntToStr() ? RealToStr() function won't work.
feedback
|
|
There is a bunch of conversion routines in SysUtils unit, ie FloatToStr and other | ||||
|
feedback
|
|
It depends on the Delphi version you are using. There is a FloatToStr in newer versions. | |||||||||
feedback
|
|
A really old method uses the 'Str' procedure, which has two parameters: the first is a real or integer, and the second is a string variable, into which the formatted number will be placed. Examples:
| |||
|
feedback
|