int2Str Function

Converts an integer to the equivalent text string.


str int2Str(int integer)

Parameter

Description

integer

The integer to convert to a text string.

A string representation of the integer.

static void int2StrExample(Args _arg)
{
    ;
    print "This is int2Str, value is " + int2Str(intMax());
    print "This is int642Str, value is " + int642Str(int64Max());
    pause;
}

Community Additions

ADD
Show: