C# 中的 Char.IsLetter() 方法
C# 中的 Char.IsLetter() 方法用于指示指定的 Unicode 字符是否被归类为 Unicode 字母。
语法
以下为语法 −
public static bool IsLetter (char ch);
其中,参数 ch 为要评估的 Unicode 字符。
示例
现在我们来看一个例子来说明 Char.IsLetter() 方法的实现 −
using System; public class Demo { public static void Main(){ bool res; char val = 'K'; Console.WriteLine("Value = "+val); res = Char.IsLetter(val); Console.WriteLine("Is the value a letter? = "+res); } }
输出
这将产生以下输出 −
Value = K Is the value a letter? = True
示例
现在我们来看另一个例子 −
using System; public class Demo { public static void Main(){ bool res; char val = '2'; Console.WriteLine("Value = "+val); res = Char.IsLetter(val); Console.WriteLine("Is the value a letter? = "+res); } }
输出
这将产生以下输出 −
Value = 2 Is the value a letter? = False
广告