Méthode System::Char::IsDigit
Contenu
[
Cacher
]Char::IsDigit(char_t) method
Détermine si le caractère spécifié est classé comme un chiffre décimal.
static bool System::Char::IsDigit(char_t c)
| Paramètre | Type | Description |
|---|---|---|
| c | char_t | Le caractère à tester |
ReturnValue
Vrai si le caractère spécifié est un chiffre décimal, sinon - faux
Voir aussi
- Class Char
- Namespace System
- Library Aspose.Font for C++
Char::IsDigit(const char_t *, int) method
Détermine si le caractère à l’index spécifié dans le tampon de caractères spécifié est classé comme un chiffre décimal.
static bool System::Char::IsDigit(const char_t *str, int idx)
| Paramètre | Type | Description |
|---|---|---|
| str | const char_t * | Pointeur vers le début du tampon de caractères |
| idx | int | Un indice basé sur zéro dans le tampon spécifié du caractère à tester |
ReturnValue
Vrai si le caractère à l’index spécifié est un chiffre décimal, sinon - faux
Voir aussi
- Class Char
- Namespace System
- Library Aspose.Font for C++
Char::IsDigit(const String&, const int32_t) method
Détermine si le caractère à l’index spécifié dans la chaîne spécifiée est classé comme un chiffre décimal.
static bool System::Char::IsDigit(const String &str, const int32_t idx)
| Paramètre | Type | Description |
|---|---|---|
| str | const String& | Une chaîne |
| idx | const int32_t | Un indice basé sur zéro dans le tampon spécifié du caractère à tester |
ReturnValue
Vrai si le caractère à l’index spécifié est un chiffre décimal, sinon - faux
Voir aussi
- Class String
- Class Char
- Namespace System
- Library Aspose.Font for C++