Namespaces
Variants

std:: isalpha (std::locale)

From cppreference.net
定义于头文件 <locale>
template < class CharT >
bool isalpha ( CharT ch, const locale & loc ) ;

检查给定字符是否被指定区域的 std::ctype 刻面归类为字母字符。

目录

参数

ch - 字符
loc - 区域设置

返回值

若字符被分类为字母则返回 true ,否则返回 false

可能的实现

template<class CharT>
bool isalpha(CharT ch, const std::locale& loc)
{
    return std::use_facet<std::ctype<CharT>>(loc).is(std::ctype_base::alpha, ch);
}

示例

演示了在不同区域设置(操作系统特定)下使用 isalpha() 的情况。

#include <iostream>
#include <locale>
int main()
{
    const wchar_t c = L'\u042f'; // cyrillic capital letter ya
    std::locale loc1("C");
    std::cout << "isalpha('Я', C locale) returned "
              << std::boolalpha << std::isalpha(c, loc1) << '\n';
    std::locale loc2("en_US.UTF8");
    std::cout << "isalpha('Я', Unicode locale) returned "
              << std::boolalpha << std::isalpha(c, loc2) << '\n';
}

可能的输出:

isalpha('Я', C locale) returned false
isalpha('Я', Unicode locale) returned true

参见

检查字符是否为字母字符
(函数)
检查宽字符是否为字母字符
(函数)