Strings.AscW 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回整數值,以代表某字元的對應字元碼。
多載
AscW(Char) |
傳回整數值,以代表某字元的對應字元碼。 |
AscW(String) |
傳回整數值,以代表某字元的對應字元碼。 |
AscW(Char)
- 來源:
- Strings.vb
- 來源:
- Strings.vb
- 來源:
- Strings.vb
傳回整數值,以代表某字元的對應字元碼。
public:
static int AscW(char String);
public static int AscW (char String);
static member AscW : char -> int
Public Function AscW (String As Char) As Integer
參數
- String
- Char
必要。 任何有效的 Char
或 String
運算式。 如果 String
為 String
運算式,則只有字串的第一個字元才會用於輸入。 如果 String
為 Nothing
或者不包含任何字元,則會發生 ArgumentException 錯誤。
傳回
對應至字元的字元碼。
範例
下列範例會 Asc
使用 函式傳回 Integer
對應至每個字串中第一個字母的字元碼。
Dim codeInt As Integer
' 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
支援。
另請參閱
- Chr(Int32)
- ChrW(Int32)
- System.Globalization
- CultureInfo
- ANSICodePage
- ArgumentException
- 函式 (Visual Basic)
適用於
AscW(String)
- 來源:
- Strings.vb
- 來源:
- Strings.vb
- 來源:
- Strings.vb
傳回整數值,以代表某字元的對應字元碼。
public:
static int AscW(System::String ^ String);
public static int AscW (string String);
static member AscW : string -> int
Public Function AscW (String As String) As Integer
參數
- String
- String
必要。 任何有效的 Char
或 String
運算式。 如果 String
為 String
運算式,則只有字串的第一個字元才會用於輸入。 如果 String
為 Nothing
或者不包含任何字元,則會發生 ArgumentException 錯誤。
傳回
對應至字元的字元碼。
範例
下列範例會 Asc
使用 函式傳回 Integer
對應至每個字串中第一個字母的字元碼。
Dim codeInt As Integer
' 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
支援。
另請參閱
- Chr(Int32)
- ChrW(Int32)
- System.Globalization
- CultureInfo
- ANSICodePage
- ArgumentException
- 函式 (Visual Basic)