在C#中,Char.IsDigit()是一种System.Char结构方法,用于检查Unicode字符是否可以归类为十进制数字(基数10)。有效数字将成为UnicodeCategory.DecimalDigitNumber类别的成员。可以通过传递不同类型和数量的参数来重载此方法。
- Char.IsDigit(Char)方法
- Char.IsDigit(String,Int32)方法
Char.IsDigit(Char)方法
此方法用于检查指定的Unicode字符是否与十进制数字匹配。如果匹配,则返回True,否则返回False。
用法:
public static bool IsDigit(char ch);
参数:
- ch:必须检查System.char类型的Unicode字符。
返回类型:如果成功匹配任何十进制数字,则该方法返回True,否则返回False。此方法的返回类型为System.Boolean。
例:
// C# program to illustrate the
// Char.IsDigit(Char) Method
using System;
class GFG {
// Main Method
static public void Main()
{
// Declaration of data type
bool result;
// checking if 5
// is a digit or not
char ch1 = '5';
result = Char.IsDigit(ch1);
Console.WriteLine(result);
// checking if 'c'
// is a digit
char ch2 = 'c';
result = Char.IsDigit(ch2);
Console.WriteLine(result);
}
}
输出:
True False
Char.IsDigit(String,Int32)方法
此方法用于检查指定位置的指定字符串是否与任何十进制数字匹配。如果匹配,则返回True,否则返回False。
用法:
public static bool IsDigit(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.IsDigit(String, Int32) Method
using System;
class GFG {
// Main Method
static public void Main()
{
// Declaration of data type
bool result;
// checking for decimal digit in
// a string at a desired position
string str1 = "GeeksforGeeks";
result = Char.IsDigit(str1, 2);
Console.WriteLine(result);
// checking for decimal digit in a
// string at a desired position
string str2 = "geeks5forgeeks";
result = Char.IsDigit(str2, 5);
Console.WriteLine(result);
}
}
输出:
False True
参考:https://docs.microsoft.com/en-us/dotnet/api/system.char.isdigit?view=netframework-4.7.2
相关用法
- C# DateTimeOffset.Add()用法及代码示例
- C# String.Contains()用法及代码示例
- C# Math.Sin()用法及代码示例
- C# Math.Cos()用法及代码示例
- C# Dictionary.Add()用法及代码示例
- C# Math.Tan()用法及代码示例
- C# Math.Abs()方法用法及代码示例
- C# Math.Exp()用法及代码示例
- C# Math.Abs()函数用法及代码示例
注:本文由纯净天空筛选整理自Kirti_Mangal大神的英文原创作品 C# | Char.IsDigit() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。