在线文档教程
C++
本土化 | Localizations

std::isalpha(std::locale)

STD::isalpha%28 std::locale%29

Defined in header
template< class charT > bool isalpha( charT ch, const locale& loc

检查给定字符是否按给定区域设置%27s分类为字母字符std::ctype小面。

参数

ch-character
loc-locale

返回值

回报true如果这个字符被归类为字母,false否则。

可能的实施

模板<类图表>bool是alpha%28图表ch,Const std::locale&loc%29{返回std::use[医]facet<std::Ctype<charT>>%28 loc%29 is%28 std::Ctype[医]基::Alpha,ch%29;}

*。

演示在不同的地区使用isalpha%28%29与%28 OS特定的%29。

二次

#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

二次

另见

isalphachecks if a character is alphabetic (function)
iswalphachecks if a wide character is alphabetic (function)

© cppreference.com

在CreativeCommonsAttribution下授权-ShareAlike未移植许可v3.0。

http://en.cppreference.com/w/cpp/locale/isalpha