Chr()
语法
Text$ = Chr(CharacterValue)概要
Returns a string created with the given character value.
参数
CharacterValue The character value. It can be an ASCII value, or an unicode value if the program is compiled as Unicode mode.
返回值
Returns a string created with the given character value.
示例
Debug Chr(33) ; Will display "!"
Remarks
A table with all Ascii values and their relating figures may be found here.
This command also works in Unicode mode and then returns the related characters associated to the given value.Debug Chr(401) ; will display "?" Debug Chr(956) ; will display "�
参阅
Asc()
已支持操作系统
所有