|  | 
|  |  |  |  | 
This function converts the integer value into its string equivalent (the base of the return string is always decimal).
Related keyword:
| int2str(integer value) return charstring | 
Example 1:
 var charstring v_chstr;
...
 v_chstr := int2str(66); // v_chstr will contain the charstring value "66" 
Example 2:
 var charstring v_chstr;
...
 v_chstr := int2str(-66); // v_chstr will contain the charstring value "-66"