uint2Str Function

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


str uint2Str(int integer)

Parameter

Description

integer

The int to convert.

The string equivalent to the unsigned int passed in as a parameter.

Use this if you work with integers so large, that they might seem signed which is the case with for instance the Record IDs.

Community Additions

ADD
Show: