Char.IsDigit 方法

定义

指示 Unicode 字符是否属于十进制数字类别。

重载

IsDigit(Char)

指示指定的 Unicode 字符是否属于十进制数字类别。

IsDigit(String, Int32)

指示指定字符串中位于指定位置处的字符是否属于十进制数字类别。

示例

以下代码示例演示 IsDigit

using namespace System;
int main()
{
   char ch = '8';
   Console::WriteLine( Char::IsDigit( ch ) ); // Output: "True"
   Console::WriteLine( Char::IsDigit(  "sample string", 7 ) ); // Output: "False"
}
using System;

public class IsDigitSample {
    public static void Main() {
        char ch = '8';

        Console.WriteLine(Char.IsDigit(ch));					// Output: "True"
        Console.WriteLine(Char.IsDigit("sample string", 7));	// Output: "False"
    }
}
open System

let ch = '8'

printfn $"{Char.IsDigit ch}"                        // Output: "True"
printfn $"""{Char.IsDigit("sample string", 7)}"""   // Output: "False"
Module IsDigitSample

    Sub Main()

        Dim ch8 As Char
        ch8 = "8"c

        Console.WriteLine(Char.IsDigit(ch8))                    ' Output: "True"
        Console.WriteLine(Char.IsDigit("sample string", 6))     ' Output: "False"

    End Sub

End Module

注解

有效数字是类别的成员 UnicodeCategory.DecimalDigitNumber

IsDigit(Char)

Source:
Char.cs
Source:
Char.cs
Source:
Char.cs

指示指定的 Unicode 字符是否属于十进制数字类别。

public:
 static bool IsDigit(char c);
public static bool IsDigit (char c);
static member IsDigit : char -> bool
Public Shared Function IsDigit (c As Char) As Boolean

参数

c
Char

要计算的 Unicode 字符。

返回

如果 true 是十进制数,则为 c;否则为 false

注解

此方法确定 是否 Char 为基数-10 位。 这与 IsNumber形成鲜明对比,后者确定 是否 Char 为任何数字 Unicode 类别。 数字包括分数、下标、上标、罗马数字、货币分子、包围的数字和特定于脚本的数字等字符。

有效数字是类别的成员 UnicodeCategory.DecimalDigitNumber

另请参阅

适用于

IsDigit(String, Int32)

Source:
Char.cs
Source:
Char.cs
Source:
Char.cs

指示指定字符串中位于指定位置处的字符是否属于十进制数字类别。

public:
 static bool IsDigit(System::String ^ s, int index);
public static bool IsDigit (string s, int index);
static member IsDigit : string * int -> bool
Public Shared Function IsDigit (s As String, index As Integer) As Boolean

参数

s
String

一个字符串。

index
Int32

s 中要计算的字符的位置。

返回

如果 true 中位于 index 的字符是一个十进制数,则为 s;否则为 false

例外

snull

index 小于零或大于 s 中最后一个位置。

注解

此方法确定 是否 Char 为基数-10 位。 这与 IsNumber形成鲜明对比,后者确定 是否 Char 为任何数字 Unicode 类别。 数字包括分数、下标、上标、罗马数字、货币分子、包围的数字和特定于脚本的数字等字符。

字符串中的字符位置从零开始编制索引。

有效数字是类别的成员 UnicodeCategory.DecimalDigitNumber

另请参阅

适用于