在C#中, Char.IsLetterOrDigit()是System.Char struct方法,用于检查Unicode字符可以归类为字母还是十进制数字。有效字母和十进制数字将成为UnicodeCategory的成员:UppercaseLetter,LowercaseLetter,TitlecaseLetter,ModifierLetter,OtherLetter或DecimalDigitNumber类别。可以通过向其传递不同类型和数量的参数来重载此方法。
- Char.IsLetterOrDigit(Char)方法
- Char.IsLetterOrDigit(String,Int32)方法
Char.IsLetterOrDigit(Char)方法
此方法用于检查指定的Unicode字符是否匹配任何字母或十进制数字。如果匹配,则返回True,否则返回False。
句法:
public static bool IsLetterOrDigit(char ch);
范围:
ch: It is required Unicode character of System.char type which is to be checked.
返回类型:如果成功匹配任何Unicode字母或十进制数字,则该方法返回True,否则返回False。此方法的返回类型为System.Boolean 。
例子:
// C# program to illustrate the
// Char.IsLetterOrDigit(Char) Method
using System;
class GFG {
// Main Method
static public void Main()
{
// Declaration of data type
bool result;
// checking if G is a
// letter or decimal digit
char ch1 = 'G';
result = Char.IsLetterOrDigit(ch1);
Console.WriteLine(result);
// checking if '@' is a
// letter or decimal digit
char ch2 = '@';
result = Char.IsLetterOrDigit(ch2);
Console.WriteLine(result);
}
}
True
False
Char.IsLetterOrDigit(String,Int32)方法
此方法用于检查指定位置的指定字符串是否与任何字母或十进制数字匹配。如果匹配,则返回True,否则返回False。
句法:
public static bool IsLetterOrDigit(string str, int index);
参数:
Str: It is the required string of System.String type which is to be evaluate.
index: It is the position of character in string to be compared and type of this parameter is System.Int32.
返回类型:如果该方法成功匹配指定字符串指定索引处的任何字母或十进制数字,则返回True,否则返回False。此方法的返回类型为System.Boolean 。
例外情况:
- 如果str的值为null,则此方法将提供ArgumentNullException 。
- 如果索引小于零或大于str中的最后一个位置,则此方法将提供ArgumentOutOfRangeException 。
例子:
// C# program to illustrate the
// Char.IsLetterOrDigit(String, Int32) Method
using System;
class GFG {
// Main Method
static public void Main()
{
// Declaration of data type
bool result;
// checking for letter or decimal digit
// in a string at desired position
string str1 = "Geeks46orGeeks";
result = Char.IsLetterOrDigit(str1, 5);
Console.WriteLine(result);
// checking for letter or decimal digit
// in a string at a desired position
string str2 = "geeks%forgeeks";
result = Char.IsLetterOrDigit(str2, 5);
Console.WriteLine(result);
}
}
True
False
参考: https : //docs.microsoft.com/zh-cn/dotnet/api/system.char.IsLetterOrDigit?view=netframework-4.7.2