Chr 函数

返回与指定字符代码对应的字符。

语法:

Chr(Expression As Integer)

返回值:

字符串

参数:

Expression: a numeric expression that represents a valid 8-bit ASCII value (0-255) or a 16-bit Unicode value. (To support expressions with a nominally negative argument like Chr(&H8000) in a backwards-compatible way, values in the range −32768 to −1 are internally mapped to the range 32768 to 65535.)

warning

启用 VBA 兼容模式时 (OPTION VBASUPPORT 1), 「表达式」是只能表示有效的 8 位 ASCII 值 (0-255) 的数值表达式。


利用「Chr$」函数,可以将特殊的控制序列发送到打印机或其他输出源。还可以利用该函数在字符串表达式中插入引号。

错误代码:

5 无效的过程调用

6 溢出, 当启用 VBA 兼容模式且表达式大于 255 时。

示例:


        Sub ExampleChr
            ' 此示例在字符串中插入引号 (ASCII 值为 34)。
            MsgBox "A "+ Chr$(34)+"short" + Chr$(34)+" trip."
            ' 对话框中的输出为: A "short" trip。
        End Sub
    

ASC

请支持我们!