7.67.52015-05-06

IntToStr (function)

Converts an integer expression into a string value.

Syntax

inttostr( expression ) string value

Argument

expression

Integer value to be converted.

Code Sample Example

This example prints the iterations of a loop.

Example


define(&x,integer,1)
%Define loop variable
for(&x,1,1,10)
  %Set up loop
  show('Iteration ' + inttostr(&x) )
  %Show text
  crlf()
  %Skip line
endfor()