HP Forums

Full Version: Question about string conversion shortcut...
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I've seen programs use the following:

T:=""+V;

instead of:

T:=STRING(V);

to convert V to a string from a numerical value inside a program.

The first version seems to work. I'm wondering, is it faster than the latter? Anyone know?
Thanks
-Donald
Hello,

The STRING() version will be faster and take less RAM.

Cyrille
Thanks....good to know.
Reference URL's