當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C# Char.IsUpper()用法及代碼示例


在C#中,Char.IsUpper()是System.Char struct方法,用於檢查Unicode字符是否可以歸類為大寫字母。有效的大寫字母將成為UnicodeCategory:UppercaseLetter的成員。可以通過傳遞不同類型和數量的參數來重載此方法。

  1. Char.IsUpper(Char)方法
  2. Char.IsUpper(String,Int32)方法


Char.IsUpper(Char)方法

此方法用於檢查指定的Unicode字符是否匹配任何大寫字母。如果匹配,則返回True,否則返回False。

用法:

public static bool IsUpper(char ch);

參數:

  • ch:必須檢查System.char類型的Unicode字符。

返回類型:如果成功匹配任何大寫字母,則該方法返回True,否則返回False。此方法的返回類型為System.Boolean。

例:

// C# program to illustrate the 
// Char.IsUpper(Char) Method 
using System; 
  
class GFG { 
  
    // Main Method 
    static public void Main() 
    { 
  
        // Declaration of data type 
        bool result; 
  
        // checking if G is a 
        // uppercase letter or not 
        char ch1 = 'G'; 
        result = Char.IsUpper(ch1); 
        Console.WriteLine(result); 
  
        // checking if 'g' is a 
        // uppercase letter or not 
        char ch2 = 'g'; 
        result = Char.IsUpper(ch2); 
        Console.WriteLine(result); 
    } 
}
輸出:
True
False

Char.IsUpper(String,Int32)方法

此方法用於檢查指定位置的指定字符串是否與任何大寫字母匹配。如果匹配,則返回True,否則返回False。

用法:

public static bool IsUpper(string str, int index);

參數:


  • Str:這是要評估的System.String類型的必需字符串。
    index:是要比較的字符串中字符的位置,此參數的類型為System.Int32

返回類型:如果該方法成功匹配指定字符串中指定索引處的任何大寫字母,則該方法返回True,否則返回False。此方法的返回類型為System.Boolean。

異常:

  • 如果str的值為null,則此方法將提供ArgumentNullException
  • 如果索引小於零或大於str中的最後一個位置,則此方法將給出ArgumentOutOfRangeException。

例:

// C# program to illustrate the 
// Char.IsUpper(String, Int32) Method 
using System; 
  
class GFG { 
  
    // Main Method 
    static public void Main() 
    { 
  
        // Declaration of data type 
        bool result; 
  
        // checking for uppercase letter in 
        // a string at a desired position 
        string str1 = "GeeksForGeeks"; 
        result = Char.IsUpper(str1, 5); 
        Console.WriteLine(result); 
  
        // checking for uppercase letter in a 
        // string at a desired position 
        string str2 = "geeksforgeeks"; 
        result = Char.IsUpper(str2, 2); 
        Console.WriteLine(result); 
    } 
}
輸出:
True
False

參考:https://docs.microsoft.com/en-us/dotnet/api/system.char.IsUpper?view=netframework-4.7.2



相關用法


注:本文由純淨天空篩選整理自Kirti_Mangal大神的英文原創作品 C# | Char.IsUpper() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。