Difference between revisions of "MC-Basic:CHR$"
Line 40: | Line 40: | ||
* [[MC-Basic:STRING$|STRING$]] | * [[MC-Basic:STRING$|STRING$]] | ||
* [[MC-Basic:UTF$|UTF$]] | * [[MC-Basic:UTF$|UTF$]] | ||
− | + | * [[MC-Basic:ASC|ASC]] | |
[[Category:MC-Basic:String Manipulation|CHR$]] | [[Category:MC-Basic:String Manipulation|CHR$]] | ||
}} | }} |
Revision as of 07:17, 17 July 2014
This function returns a one-character string corresponding to a given ASCII value.
Syntax
CHR$(<number>)
Availability
All versions
Type
<return value>: String
<number>: Long
Range
<return value>: String
<number>: 0 to 255
Scope
Configuration, Task or Terminal
Limitations
Read only
Examples
-->PRINT CHR$(65)
A