Section courante

A propos

Section administrative du site

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

Exemple

Voici un exemple permettant de vérifier si toute la chaine de caractères est en minuscule :

Essayer maintenant !
  1. #include <iostream>
  2. #include <cctype>
  3. #include <cstring>
  4.  
  5. int isalllower(const char * string) {
  6.  int I;
  7.  for(I = 0; I < strlen(string); I++) {
  8.   if(isalpha(string[I])) {
  9.    if(!islower(string[I])) return 0;
  10.   }
  11.  }
  12.  return 1;
  13. }
  14.  
  15. int main()
  16. {
  17.     std::cout << "sylvain maltais=" << isalllower("sylvain maltais") << std::endl;
  18.     std::cout << "Sylvain Maltais=" << isalllower("Sylvain Maltais") << std::endl;
  19.     std::cout << "SYLVain MALTais=" << isalllower("SYLVain MALTais") << std::endl;
  20.     std::cout << "SYLVAIN MALTAIS=" << isalllower("SYLVAIN MALTAIS") << std::endl;
  21.     return 0;
  22. }

on obtiendra le résultat suivant :

sylvain maltais=1
Sylvain 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