C# | Char。IsLower()方法
原文:https://www.geeksforgeeks.org/c-sharp-char-islower-method/
在 C# 中, Char。 是一个系统。Char 结构方法,用于检查 Unicode 字符是否可以归类为小写字母。有效的小写字母将是unicode category:lowercarseleter的成员。通过向该方法传递不同类型和数量的参数,可以重载该方法。
* Char.T4【查尔】法。IsLower(String,Int32)方法
夏尔。低功耗(充电)方法
此方法用于检查指定的 Unicode 字符是否匹配小写字母。如果匹配,则返回真,否则返回假。
语法:
public static bool IsLower(char ch);
参数:
ch :需要检查的系统. char 类型的 Unicode 字符。
返回类型:如果成功匹配任意小写字母,则返回 True,否则返回 False。这种方法的返回类型是系统。布尔。
示例:
// 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);
}
}
Output:
True
False
夏尔。IsLower(字符串,Int32)方法
此方法用于检查指定位置的指定字符串是否与任何小写字母匹配。如果匹配,则返回真,否则返回假。
语法:
public static bool IsLower(string str, int index);
参数:
字符串:是系统的必输字符串。要评估的字符串类型。 索引:是要比较的字符串中字符的位置,该参数的类型为 System。Int32 。
返回类型:如果该方法成功匹配指定字符串中指定索引处的任何小写字母,则返回 True,否则返回 False。这种方法的返回类型是系统。布尔。
异常:
- 如果 str 的值为 null ,则该方法将给出 ArgumentNullException
- 如果索引小于零或大于字符串中的最后一个位置,则该方法将给出argumentout of rangerexception。
示例:
// 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);
}
}
Output:
True
False
参考:T2?视图=netframework-4.7.2
版权属于:月萌API www.moonapi.com,转载请注明出处