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

std::iscntrl(std::locale)

STD::iscntrl%28 std::locale%29

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

检查给定字符是否被给定的区域设置%27s归类为控制字符std::ctype小面。

参数

ch-character
loc-locale

返回值

回报true如果该字符被归类为控制字符,false否则。

可能的实施

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

*。

演示在不同地区使用iscntrl%28%29的用法--特定于%29。

二次

#include <iostream> #include <locale> int main() { const wchar_t CCH = L'\u0094'; // Destructive Backspace in Unicode std::locale loc1("C" std::cout << "iscntrl(CCH, C locale) returned " << std::boolalpha << std::iscntrl(CCH, loc1) << '\n'; std::locale loc2("en_US.UTF8" std::cout << "iscntrl(CCH, Unicode locale) returned " << std::boolalpha << std::iscntrl(CCH, loc2) << '\n'; }

二次

产出:

二次

iscntrl(CCH, C locale) returned false iscntrl(CCH, Unicode locale) returned true

二次

另见

iscntrlchecks if a character is a control character (function)
iswcntrlchecks if a wide character is a control character (function)

© cppreference.com

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

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