isalpha


isalpha

Ascertains whether a given character is a letter of the alphabet

 #include <ctype.h> int isalpha ( int c  ); 

The function isalpha( ) tests whether its character argument is a letter of the alphabet. If the character is alphabetic, isalpha( ) returns a nonzero value (that is, TRue); if not, the function returns 0 (false).

Which characters are considered alphabetic depends on the current locale setting for the localization category LC_CTYPE, which you can query or change using the setlocale( ) function.

In the C locale, which is the default locale setting, the alphabetic characters are those for which isupper( ) or islower( ) returns true. These are the 26 lowercase and 26 uppercase letters of the Latin alphabet, which are the letters in the basic source and execution character sets (see "Character Sets" in Chapter 1).

Accented characters, umlauts, and the like are considered alphabetic only in certain locales. Moreover, other locales may have characters that are alphabetic, but are neither upper- nor lowercase, or both upper- and lowercase.


In all locales, the isalpha( ) classification is mutually exclusive with iscntrl( ), isdigit( ), ispunct( ), and isspace( ).

Example

See the example for isprint( ) in this chapter.

See Also

The corresponding C99 function for wide characters, iswalpha( ); isalnum( ), isblank( ), iscntrl( ), isdigit( ), isgraph( ), islower( ), isprint( ), ispunct( ), isspace( ), isupper( ), isxdigit( ), setlocale( )



C(c) In a Nutshell
C in a Nutshell (In a Nutshell (OReilly))
ISBN: 0596006977
EAN: 2147483647
Year: 2006
Pages: 473

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net