std::isprint(std::locale)
来自 cppreference.cn
| 定义于头文件 <locale> |
||
| template< class CharT > bool isprint( CharT ch, const locale& loc ); |
||
检查给定字符是否被给定区域设置的 std::ctype facet 分类为可打印字符(包括空格)。
目录 |
[编辑] 参数
| ch | - | 字符 |
| loc | - | locale |
[编辑] 返回值
如果字符被分类为可打印字符,则返回 true,否则返回 false。
[编辑] 可能实现
template<class CharT> bool isprint(CharT ch, const std::locale& loc) { return std::use_facet<std::ctype<CharT>>(loc).is(std::ctype_base::print, ch); } |
[编辑] 示例
演示在不同区域设置下使用 isprint()(与操作系统相关)。
运行此代码
#include <iostream> #include <locale> int main() { const wchar_t c = L'\u2122'; // trademark sign std::locale loc1("C"); std::cout << "isprint('™', C locale) returned " << std::boolalpha << std::isprint(c, loc1) << '\n'; std::locale loc2("en_US.UTF-8"); std::cout << "isprint('™', Unicode locale) returned " << std::boolalpha << std::isprint(c, loc2) << '\n'; }
可能的输出
isprint('™', C locale) returned false
isprint('™', Unicode locale) returned true[编辑] 参阅
| 检查字符是否为可打印字符 (函数) | |
| 检查宽字符是否为可打印字符 (函数) |