uint2Str Function

Converts an integer to a string with the assumption that the integer is unsigned.


str uint2Str(int integer)

Parameter

Description

integer

The integer to convert.

The string equivalent to the specified unsigned integer.

Use this function instead of the int2str function for very large integers, such as record IDs.

  • info(int2str(3123456789)); //returns -1171510507 as a string.

  • info(uint2str(3123456789)); //returns 3123456789 as a string.

Community Additions

ADD
Show: