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

std::isblank(std::locale)

STD::isspace%28 std::locale%29

Defined in header
template< class charT > bool isblank( charT ch, const locale& loc (since C++11)

检查给定字符是否由给定的区域设置%27s C类型面分类为空白字符。

参数

ch-character
loc-locale

返回值

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

可能的实施

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

*。

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

二次

#include <iostream> #include <locale> void try_with(wchar_t c, const char* loc) { std::wcout << "isblank('" << c << "', locale(\"" << loc << "\")) returned " << std::boolalpha << std::isblank(c, std::locale(loc)) << '\n'; } int main() { const wchar_t IDEO_SPACE = L'\u3000'; // Unicode character 'IDEOGRAPHIC SPACE' try_with(IDEO_SPACE, "C" try_with(IDEO_SPACE, "en_US.UTF-8" }

二次

产出:

二次

isblank(' ', locale("C")) returned false isblank(' ', locale("en_US.UTF-8")) returned true

二次

另见

isblank (C++11)checks if a character is a blank character (function)
iswblank (C++11)checks if a wide character is a blank character (function)

© cppreference.com

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

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