CHARS


The CHARS function accepts a dynamic array of numeric expressions and returns a dynamic array of the corresponding ASCII characters.

 

COMMAND SYNTAX

CHARS(DynArr)

 

SYNTAX ELEMENTS

Each element of DynArr must evaluate to a numeric argument in the range 0-255.

 

NOTES

If any of the dynamic array elements are non-numeric, a run-time error will occur.

See also CHAR().

 

EXAMPLE

y = 58 : @AM : 45 : @AM : 41
z = CHARS(y)
FOR i = 1 TO 3
   CRT z<i>:
NEXT i

This code displays:

:-)


jBC