string IntToStr(int)
Return Type: string
Parameters: int i
Description:
This function converts an integer to a string. This can also be accomplished
using the 'string' function and the 'format' function in the Standard
package.
Example
Code |
1 >>int
i = 42;
2 >>string s = IntToStr(i);
3 >>disp(s);
42 |
See Also: format