Char.IsUpper 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
指示 Unicode 字元是否分類為大寫字母。
多載
IsUpper(Char) |
指示指定的 Unicode 字元是否分類為大寫字母。 |
IsUpper(String, Int32) |
指示指定的字串中指定位置處的字元是否分類為大寫字母。 |
IsUpper(Char)
- 來源:
- Char.cs
- 來源:
- Char.cs
- 來源:
- Char.cs
指示指定的 Unicode 字元是否分類為大寫字母。
public:
static bool IsUpper(char c);
public static bool IsUpper (char c);
static member IsUpper : char -> bool
Public Shared Function IsUpper (c As Char) As Boolean
參數
- c
- Char
要評估的 Unicode 字元。
傳回
當 true
是大寫字母時為 c
,否則為 false
。
備註
有效的大寫字母是 中 UnicodeCategory 下列類別的成員: UppercaseLetter
。
另請參閱
適用於
IsUpper(String, Int32)
- 來源:
- Char.cs
- 來源:
- Char.cs
- 來源:
- Char.cs
指示指定的字串中指定位置處的字元是否分類為大寫字母。
public:
static bool IsUpper(System::String ^ s, int index);
public static bool IsUpper (string s, int index);
static member IsUpper : string * int -> bool
Public Shared Function IsUpper (s As String, index As Integer) As Boolean
參數
- s
- String
字串。
- index
- Int32
要評估的字元在 s
中的位置。
傳回
當 true
中位於 index
的字元是大寫字母時為 s
,否則為 false
。
例外狀況
s
為 null
。
index
小於零或大於 s
中的最後一個位置。
備註
字串中的字元位置是從零開始編制索引。
有效的大寫字母是 中 UnicodeCategory 下列類別的成員: UppercaseLetter
。