在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:必須檢查System.char類型的Unicode字符。
返回類型:如果該方法成功匹配任何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:這是要評估的System.String類型的必需字符串。
index:是要比較的字符串中字符的位置,此參數的類型為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/en-us/dotnet/api/system.char.IsLetterOrDigit?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.IsLetterOrDigit() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。