Section courante

A propos

Section administrative du site

ISALPHA

Est-ce un alphabétique ?
SVID 3, POSIX, BSD 4.3, ISO 9899 ctype.h

Syntaxe

int isalpha(int c);

Paramètres

Nom Description
c Ce paramètre permet d'indiquer le caractère à vérifier

Description

Cette fonction indique si le caractère est alphabétique (A à Z et a à z).

Exemple

Voici quelques exemples typiques de l'utilisation de cette fonction :

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <ctype.h>
  4. #include <string.h>
  5.  
  6. int IsValidName(const char * string) {
  7.  int I;
  8.  for(I = 0; I < strlen(string); I++) {
  9.   if(!(isalpha(string[I]) || string[I] == '-' || string[I] == ' ')) {
  10.    return 0;
  11.   }
  12.  }
  13.  return 1;
  14. }
  15.  
  16. int main() {
  17.  printf("«Sylvain123» est un nom valide=%i\n",IsValidName("Sylvain123"));
  18.  printf("«Sylvain» est un nom valide=%i\n",IsValidName("Sylvain"));
  19.  printf("«Sylvain Maltais» est un nom valide=%i\n",IsValidName("Sylvain Maltais"));
  20.  printf("«Sylvain II» est un nom valide=%i\n",IsValidName("Sylvain II"));
  21.  printf("«Jean-Francois» est un nom valide=%i\n",IsValidName("Jean-Francois"));
  22.  printf("«Jean+Francois» est un nom valide=%i\n",IsValidName("Jean+Francois"));
  23.  return 0;
  24. }

on obtiendra le résultat suivant :

«Sylvain123» est un nom valide=0
«Sylvain» est un nom valide=1
«Sylvain Maltais» est un nom valide=1
«Sylvain II» est un nom valide=1
«Jean-Francois» est un nom valide=1
«Jean+Francois» est un nom valide=0


Dernière mise à jour : Dimanche, le 21 février 2016