wiki:Docs/Prog/Manual/ApplicationLibraries/lib825ev/String/IntToStr

Version 3 (modified by Don Wilson, 6 years ago) ( diff )

--

IntToStr

Convert integer to string

string IntToStr(int val);

Parameters

  • val - numeric value

Return Value

  • Returns the string representation of the number

Remarks

Example

int val = 123;
string s = IntToStr(val);
DisplayText(0, 0, s);

See Also

Note: See TracWiki for help on using the wiki.