System::Char::IsDigit メソッド
コンテンツ
[
隠れる
]Char::IsDigit(char_t) method
指定された文字が十進数字として分類されるかどうかを判定します。
static bool System::Char::IsDigit(char_t c)
| パラメーター | 型 | 説明 |
|---|---|---|
| c | char_t | テスト対象の文字 |
ReturnValue
指定された文字が十進数字である場合は true、そうでない場合は - false
参照
- Class Char
- Namespace System
- Library Aspose.Page for C++
Char::IsDigit(const char_t *, int) method
指定された文字バッファ内の指定インデックスにある文字が十進数字として分類されるかどうかを判定します。
static bool System::Char::IsDigit(const char_t *str, int idx)
| パラメーター | 型 | 説明 |
|---|---|---|
| str | const char_t * | 文字バッファの先頭へのポインタ |
| idx | int | テスト対象の文字がある、指定バッファ内のゼロベースインデックス |
ReturnValue
指定されたインデックスにある文字が十進数字である場合は true、そうでない場合は - false
参照
- Class Char
- Namespace System
- Library Aspose.Page for C++
Char::IsDigit(const String&, const int32_t) method
指定された文字列内の指定インデックスにある文字が十進数字として分類されるかどうかを判定します。
static bool System::Char::IsDigit(const String &str, const int32_t idx)
| パラメーター | 型 | 説明 |
|---|---|---|
| str | const String& | 文字列 |
| idx | const int32_t | テスト対象の文字がある、指定バッファ内のゼロベースインデックス |
ReturnValue
指定されたインデックスにある文字が十進数字である場合は true、そうでない場合は - false
参照
- Class String
- Class Char
- Namespace System
- Library Aspose.Page for C++