isPunct()

Description : Analysez si un caractère est une ponctuation (c'est-à-dire une virgule, un point-virgule, un point d'exclamation, etc.). Renvoie true si thisChar est un signe de ponctuation. Syntaxe : isPunct(thisChar) Paramètres…

0 commentaire

isPrintable()

Description : Analysez si un caractère est imprimable (c'est-à-dire n'importe quel caractère qui produit une sortie, même un espace vide). Renvoie true si thisChar est imprimable. Syntaxe : isPrintable(thisChar) Paramètres :…

0 commentaire

isLowerCase()

Description : Analysez si un caractère est en minuscule (c'est-à-dire une lettre en minuscule). Renvoie true si thisChar contient une lettre en minuscule. Syntaxe : isLowerCase(thisChar) Paramètres : thisChar : variable. Types de…

0 commentaire

isHexadecimalDigit()

Description : Analysez si un caractère est un chiffre hexadécimal (AF, 0-9). Renvoie true si thisChar contient un chiffre hexadécimal. Syntaxe : isHexadecimalDigit(thisChar) Paramètres : thisChar : variable. Types de données autorisés : char .…

0 commentaire

isGraph()

Description : Analysez si un caractère est imprimable avec un certain contenu (l'espace est imprimable mais n'a pas de contenu). Renvoie true si thisChar est imprimable. Syntaxe : isGraph(thisChar) Paramètres :…

0 commentaire

isDigit()

Description : Analysez si un caractère est un chiffre (c'est-à-dire un nombre). Renvoie true si thisChar est un nombre. Syntaxe : isDigit(thisChar) Paramètres : thisChar : variable. Types de données autorisés : char . Retour…

0 commentaire

isControl()

Description : Analysez si un caractère est un caractère de contrôle. Renvoie true si thisChar est un caractère de contrôle. Syntaxe : isControl(thisChar) Paramètres : thisChar : variable. Types de données autorisés : char .…

0 commentaire