ISLOWER |
Est-ce un minuscule ? |
---|---|
Langage C++ | cctype (ctype.h) |
Syntaxe
int islower(int caractere) |
Paramètres
Nom | Description |
---|---|
caractere | Ce paramètre permet d'indiquer le caractère à vérifier |
Description
Cette fonction indique si le caractère est une lettre minuscule.
Remarque
- La fonction islower() renvoie une valeur différente de zéro si caractere est une lettre minuscule; sinon, zéro est retourné.
Exemple
Voici un exemple permettant de vérifier si toute la chaine de caractères est en minuscule :
Essayer maintenant !
- #include <iostream>
- #include <cctype>
- #include <cstring>
-
- int isalllower(const char * string) {
- int I;
- for(I = 0; I < strlen(string); I++) {
- if(isalpha(string[I])) {
- if(!islower(string[I])) return 0;
- }
- }
- return 1;
- }
-
- int main()
- {
- std::cout << "sylvain maltais=" << isalllower("sylvain maltais") << std::endl;
- std::cout << "Sylvain Maltais=" << isalllower("Sylvain Maltais") << std::endl;
- std::cout << "SYLVain MALTais=" << isalllower("SYLVain MALTais") << std::endl;
- std::cout << "SYLVAIN MALTAIS=" << isalllower("SYLVAIN MALTAIS") << std::endl;
- return 0;
- }
on obtiendra le résultat suivant :
sylvain maltais=1Sylvain Maltais=0
SYLVain MALTais=0
SYLVAIN MALTAIS=0
Voir également
Langage de programmation - C - Référence de procédures et fonctions - islower
Références
Langage C, Edition Micro-Application, Gehard Willms, 2001, ISBN: 2-7429-2008-0, page 732.
Borland C++ for Windows 4.0, Library Reference, Edition Borland, 1993, Part # BCP1240WW21772, page 152.
Dernière mise à jour : Lundi, le 3 août 2015