std::isspace(std::locale)
来自 cppreference.com
定义在头文件 <locale> 中 |
||
template< class CharT > bool isspace( CharT ch, const locale& loc ); |
||
检查给定字符是否被给定区域设置的 std::ctype 面分类为空格字符。
内容 |
[编辑] 参数
ch | - | 字符 |
loc | - | locale |
[编辑] 返回值
如果字符被分类为空格字符,则返回 true,否则返回 false。
[编辑] 可能的实现
template<class CharT> bool isspace(CharT ch, const std::locale& loc) { return std::use_facet<std::ctype<CharT>>(loc).is(std::ctype_base::space, ch); } |
[编辑] 示例
演示了使用不同区域设置(特定于操作系统)的 std::isspace()
。
运行此代码
#include <iostream> #include <locale> void try_with(wchar_t c, const char* loc) { std::wcout << "isspace('" << c << "', locale(\"" << loc << "\")) returned " << std::boolalpha << std::isspace(c, std::locale(loc)) << '\n'; } int main() { const wchar_t EM_SPACE = L'\u2003'; // Unicode character 'EM SPACE' try_with(EM_SPACE, "C"); try_with(EM_SPACE, "en_US.UTF8"); }
可能的输出
isspace(' ', locale("C")) returned false isspace(' ', locale("en_US.UTF8")) returned true
[编辑] 另请参见
检查字符是否是空格字符 (函数) | |
检查宽字符是否是空格字符 (函数) |