CHR$
(Function)
Converts an ASCII code to a character.
CHR$ (<Expression>)
This statement obtains a character with the character code of the value designated in <Expression>.
DEFSTR ls1, ls2
|
|
ls1 = CHR$(49)
|
'Assigns a character with the character code of 49 to ls1.
|
ls2 = CHR$(&H4E)
|
'Assigns a character with the character code of &H4E to ls2.
|