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.

link|improve this question

75% accept rate
2  
delphibasics.co.uk/RTL.asp?Name=FormatFloat see if this helps i just googled around :) – Devjosh Feb 7 at 8:52
feedback

3 Answers

There is a bunch of conversion routines in SysUtils unit, ie FloatToStr and other FloatTo* functions. Also see the Format function.

link|improve this answer
feedback

It depends on the Delphi version you are using. There is a FloatToStr in newer versions.

link|improve this answer
i am using delphi 2009 for this application. – Tony Feb 7 at 8:55
So it is available. I mentioned the version because there are still people out there using Delphi 5 or 6. – Kit Fisto Feb 7 at 8:56
@KitFisto did u try using FloattoStr in Delphi 6? Because I know its present. – Shirish11 Feb 7 at 9:36
FloatToStr is also available in Delphi 5 – SimaWB Feb 7 at 9:55
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:

i:= 1;
str (i, a);   // a = '1'
r:= 1.5;
str (r:2, a); // a = '1.50'
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.