static int Asc(char String);
public static int Asc (char String);
static member Asc : char -> int
Public Function Asc (String As Char) As Integer
必要。 任何有效的
Char
或
String
運算式。 如果
String
為
String
運算式,則只有字串的第一個字元才會用於輸入。 如果
String
為
Nothing
或者不包含任何字元,則會發生
ArgumentException
錯誤。
' The following line of code sets codeInt to 65.
codeInt = Asc("A")
' The following line of code sets codeInt to 97.
codeInt = Asc("a")
' The following line of code sets codeInt to 65.
codeInt = Asc("Apple")
Asc
會傳回輸入字元的代碼
點
或字元碼。 對於單一位元組字元集,這可以是 0 到 255, (SBCS) 值,而雙位元組字元集則為 -32768 到 32767 (DBCS) 值。
AscW
會傳回輸入字元的 Unicode 字碼指標。 這可以是 0 到 65535。 傳回的值與目前線程的文化特性和字碼頁設定無關。
AscB
舊版 Visual Basic 的函式會傳回位元組的程式碼,而不是字元。 它主要用於在 DBCS) 應用程式中轉換雙位元組字元集中的字串 (。 所有 Visual Basic 2005 字串都位於 Unicode 中,不再
AscB
受到支援。
static int Asc(System::String ^ String);
public static int Asc (string String);
static member Asc : string -> int
Public Function Asc (String As String) As Integer
必要。 任何有效的
Char
或
String
運算式。 如果
String
為
String
運算式,則只有字串的第一個字元才會用於輸入。 如果
String
為
Nothing
或者不包含任何字元,則會發生
ArgumentException
錯誤。
' The following line of code sets codeInt to 65.
codeInt = Asc("A")
' The following line of code sets codeInt to 97.
codeInt = Asc("a")
' The following line of code sets codeInt to 65.
codeInt = Asc("Apple")
Asc
會傳回輸入字元的代碼
點
或字元碼。 對於單一位元組字元集,這可以是 0 到 255, (SBCS) 值,而雙位元組字元集則為 -32768 到 32767 (DBCS) 值。
AscW
會傳回輸入字元的 Unicode 字碼指標。 這可以是 0 到 65535。 傳回的值與目前線程的文化特性和字碼頁設定無關。
AscB
舊版 Visual Basic 的函式會傳回位元組的程式碼,而不是字元。 它主要用於在 DBCS) 應用程式中轉換雙位元組字元集中的字串 (。 所有 Visual Basic 2005 字串都位於 Unicode 中,不再
AscB
受到支援。