C# 中的 Char.IsDigit() 方法
C# 中的 Char.IsDigit() 方法表示所指定的 Unicode 字符是否被归类为十进制数字。
语法
以下是语法 −
public static bool IsDigit (char ch);
以上,ch 参数是需要评估的 Unicode 字符。
示例
现在让我们看一个示例,来实现 Char.IsDigit() 方法 −
using System; public class Demo { public static void Main(){ bool res; char val = 'g'; Console.WriteLine("Value = "+val); res = Char.IsDigit(val); Console.WriteLine("Is the value a digit? = "+res); } }
输出
这会产生以下输出 −
Value = g Is the value a digit? = False
示例
现在让我们看另一个示例 −
using System; public class Demo { public static void Main(){ bool res; char val = '2'; Console.WriteLine("Value = "+val); res = Char.IsDigit(val); Console.WriteLine("Is the value a digit? = "+res); } }
输出
这会产生以下输出 −
Value = 2 Is the value a digit? = True
广告