Integer To String

 
Hi

A real dumb question = how do I convert an integer to a string - the is a DoubleToStr function but no IntToStr

Thanks

Paul
 
But double includes the int data type, you can use easily concat a int to a string, eg

string myVar="Value: " +15 // will result in "Value: 15"

or use

string myVar=DoubleToStr( 15, 0)


br
fari
 
string str=integer;
 
thanks all
Reason: