System.Character.IsDigit
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」。