Formatted Number within a String Variable

 

Hi

How may I include a formatted (say float type) variable's value within a string variable?

Thanks in Advance 

 

Easiest: StringFormat("float %f within a string", aDouble)

Less: "float " + DoubleToString(aDouble, _Digits) + " within a string"

 
Thanks :)
Reason: