System::Char::IsDigit methode
inhoud
[
verbergen
]Char::IsDigit(char_t) method
Bepaalt of het opgegeven teken geclassificeerd is als een decimaal cijfer.
static bool System::Char::IsDigit(char_t c)
| Parameter | Type | Beschrijving |
|---|---|---|
| c | char_t | Het teken om te testen |
ReturnValue
Waar als het opgegeven teken een decimaal cijfer is, anders - onwaar
Zie ook
- Class Char
- Namespace System
- Library Aspose.Page for C++
Char::IsDigit(const char_t *, int) method
Bepaalt of het teken op de opgegeven index in de opgegeven tekenbuffer geclassificeerd is als een decimaal cijfer.
static bool System::Char::IsDigit(const char_t *str, int idx)
| Parameter | Type | Beschrijving |
|---|---|---|
| str | const char_t * | Pointer naar het begin van de tekenbuffer |
| idx | int | Een nulgebaseerde index in de opgegeven buffer van het te testen teken |
ReturnValue
Waar als het teken op de opgegeven index een decimaal cijfer is, anders - onwaar
Zie ook
- Class Char
- Namespace System
- Library Aspose.Page for C++
Char::IsDigit(const String&, const int32_t) method
Bepaalt of het teken op de opgegeven index in de opgegeven string geclassificeerd is als een decimaal cijfer.
static bool System::Char::IsDigit(const String &str, const int32_t idx)
| Parameter | Type | Beschrijving |
|---|---|---|
| str | const String& | Een string |
| idx | const int32_t | Een nulgebaseerde index in de opgegeven buffer van het te testen teken |
ReturnValue
Waar als het teken op de opgegeven index een decimaal cijfer is, anders - onwaar
Zie ook
- Class String
- Class Char
- Namespace System
- Library Aspose.Page for C++