在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。