chr
Top  Previous  Next

val = chr(expr1, expr2, ...)

Converts its parameters from integers to corresponding ASCII characters and returns the string composed of these characters.

Parameters
 
exprX  
Any expression. If not integer, converted to integer.  

Remarks

This function can accept any number of parameters.  

Example
 
a = chr(72)
' Returns "H".
a = chr(72, 69, 76, 76, 79)
' Returns "HELLO".
a = chr()
' Returns empty string.