System.Character.IsDigit

提供: RAD Studio API Documentation
移動先: 案内検索

Delphi

function IsDigit(C: Char): Boolean;
function IsDigit(C: UCS4Char): Boolean;
function IsDigit(const S: string; Index: Integer): Boolean;

C++

extern DELPHI_PACKAGE bool __fastcall IsDigit(System::WideChar C)/* overload */;

プロパティ

種類 可視性 ソース ユニット
function public
System.Character.pas
System.Character.hpp
System.Character System.Character


説明

警告: IsDigit は非推奨になっています。 TCharHelper.IsDigit を使用してください。

UTF-16 文字が Unicode 仕様で数字(10 進数字)として定義されているかどうかを判定します。

UTF-16 文字が Unicode 仕様で 10 進数字として定義されている場合は、True を返します。

Digit の定義、および、それと Number との関係については、次を参照してください: http://www.unicode.org/versions/Unicode5.2.0/ch04.pdf#G124206「The Unicode Standard, Version 5.2」。

関連項目

コード サンプル