Num2Char

Converts a number to its character equivalent.

Syntax:

Num2Char (number)

Parameters:

(i) number any number from 0 to 255.

Returns:

(s)  one-byte string containing the character which the number represents.

 

Use this function to convert a number to its ASCII equivalent.

Example:


; Build a variable containing a CRLF combo
CRLF = StrCat(Num2Char(13), Num2Char(10))
Message("NUM2CHAR", StrCat("line1", CRLF, "line2"))
See Also:

Char2Num, IsNumber