在VB中,ASC函数用于返回一个字符串中第一个字符的ASCII码值。其语法为:
ASC(string)
其中,string是要返回第一个字符的ASCII码值的字符串。
例如,以下示例演示了如何使用ASC函数来获取字符串"Hello"的第一个字符的ASCII码值:
Dim firstChar As Integer
firstChar = Asc("Hello")
MsgBox "The ASCII value of the first character is: " & firstChar
以上代码将弹出一个消息框,显示字符串"Hello"的第一个字符"H"的ASCII码值为72。