📜  C#| Char.IsLower()方法

📅  最后修改于: 2021-05-29 19:39:50             🧑  作者: Mango

在C#中, Char.IsLower()System.Char struct方法,该方法用于检查Unicode字符是否可以归类为小写字母。有效的小写字母将成为UnicodeCategory:LowercaseLetter的成员。可以通过向其传递不同类型和数量的参数来重载此方法。

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

Char.IsLower(Char)方法

此方法用于检查指定的Unicode字符是否匹配小写字母。如果匹配,则返回True,否则返回False。

句法:

public static bool IsLower(char ch);

范围:

返回类型:如果成功匹配任何小写字母,则该方法返回True,否则返回False。此方法的返回类型为System.Boolean

例子:

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

Char.IsLower(String,Int32)方法

此方法用于检查指定位置的指定字符串是否与任何小写字母匹配。如果匹配,则返回True,否则返回False。

句法:

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

参数:

返回类型:如果该方法成功匹配指定字符串指定索引处的任何小写字母,则该方法返回True,否则返回False。此方法的返回类型为System.Boolean

例外情况:

  • 如果str的值为null,则此方法将提供ArgumentNullException
  • 如果索引小于零或大于str中的最后一个位置,则此方法将提供ArgumentOutOfRangeException

例子:

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

参考: https : //docs.microsoft.com/zh-cn/dotnet/api/system.char.IsLower?view=netframework-4.7.2