chr( ) Function
Description:
| |
The chr() function creates a string of length one
with a character whose ASCII value is nValue. |
|
Syntax:
Parameters:
| |
numeric: nValue |
ASCII value of character. |
| |
string: retval |
A string with the ASCII value of nValue. |
Platforms:
| |
Windows, DOS, Internet Active Pages |
Example:
local var1, retval
var1 = prompt( "Enter a three or four digit ascii code number ", "0123", 4 )
retval = chr( var1 )
println( retval )
|
|