11.24 itoa()

This function converts a number to a string (integer to ascii).

Definition

string itoa
(
  integer IntValue input
)

Parameters

integer IntValue input
In this parameter the figure which is to be turned into a string is indicated.

Return value

As a result the function issues the figure which has been turned into a string.

Example

Filling an input field with a figure.

Edittext.content := itoa(5);