May 2003
Intermediate to advanced
808 pages
32h 24m
English
isalpha function template — Determines whether a character is a letter in a locale
template <typename charT>
bool isalpha(charT c, const locale& loc);The isalpha function
determines whether the character c is a letter in the locale loc. It returns the following:
use_facet<ctype<charT> >(loc).is(ctype_base::alpha, c)
Read now
Unlock full access