在C#中,Char.IsNumber()是System.Char struct方法,用於檢查Unicode字符是否可以歸類為數字。有效數字將是UnicodeCategory.DecimalDigitNumber,UnicodeCategory.LetterNumber或UnicodeCategory.OtherNumber類別的成員。
可以通過傳遞不同類型和數量的參數來重載此方法。
- Char.IsNumber(Char)方法
- Char.IsNumber(String,Int32)方法
注意:Char.IsDigit()方法和Char.IsNumber()方法之間的唯一區別是IsDigit()方法將僅檢查Char是否為基數10位數。雖然IsNumber()方法將檢查char是否為十進製數字,但數字包括字符,分數,下標,上標,羅馬數字,貨幣分子和帶圓圈的數字。
Char.IsNumber(Char)方法
此方法用於檢查指定的Unicode字符是否與數字匹配。如果匹配,則返回True,否則返回False。
用法:
public static bool IsNumber(char ch);
參數:
- ch:必須檢查System.char類型的Unicode字符。
返回類型:如果成功匹配任何數字,則該方法返回True,否則返回False。此方法的返回類型為System.Boolean。
例:
// C# program to illustrate the
// Char.IsNumber(Char) Method
using System;
class GFG {
// Main Method
static public void Main()
{
// Declaration of data type
bool result;
// checking if 5 is a
// number or not
char ch1 = '5';
result = Char.IsNumber(ch1);
Console.WriteLine(result);
// checking if 'c' is a
// number or not
char ch2 = 'c';
result = Char.IsNumber(ch2);
Console.WriteLine(result);
}
}
True False
Char.IsNumber(String,Int32)方法
此方法用於檢查指定位置的指定字符串是否與任何數字匹配。如果匹配,則返回True,否則返回False。
用法:
public static bool IsNumber(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.IsNumber(String, Int32) Method
using System;
class GFG {
// Main Method
static public void Main()
{
// Declaration of data type
bool result;
// checking for number in a
// string at a desired position
string str1 = "GeeksforGeeks";
result = Char.IsNumber(str1, 2);
Console.WriteLine(result);
// checking for number in a
// string at a desired position
string str2 = "geeks5forgeeks";
result = Char.IsNumber(str2, 5);
Console.WriteLine(result);
}
}
False True
參考:https://docs.microsoft.com/en-us/dotnet/api/system.char.IsNumber?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.IsNumber() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。