AscW 函数 [VBA]

返回某个字符串表达式中第一个字符对应的 Unicode 值。

warning

This constant, function or object is enabled with the statement Option VBASupport 1 placed before the executable program code in a module.


语法:


AscW (Text As String)

返回值:

整数

参数:

Text」: 任意有效的字符串表达式。只有字符串中的第一个字符才是相关的。

使用 AscW 函数替换包含有 Unicode 的键值。AscW 函数如果遇到空字符串,则 Collabora Office 会报告运行时错误。返回的值介于 0 和 65535 之间。

错误代码:

5 无效的过程调用

示例:


Sub ExampleAscW
 Print AscW("A") ' 返回 65
 Print AscW("Ω") ' 返回 937
 Print AscW("Αθήνα") ' 返回 913, 因为只考虑第一个字符
End Sub

请支持我们!