std::towupper
来自 cppreference.com
定义在头文件 <cwctype> 中 |
||
std::wint_t towupper( std::wint_t ch ); |
||
如果可能,将给定的宽字符转换为大写。
如果 ch 的值既不能表示为 wchar_t 也不等于宏 WEOF 的值,则行为未定义。
内容 |
[编辑] 参数
ch | - | 要转换的宽字符 |
[编辑] 返回值
ch 的大写版本,或者如果当前 C 本地化中没有列出大写版本,则为未修改的 ch。
[编辑] 注释
此函数只能执行 1:1 字符映射,例如 'ß' 的大写形式是(有一些例外)双字符字符串 "SS",它无法通过 std::towupper
获取。
ISO 30112 指定了此映射中包含哪些 Unicode 字符对。
[编辑] 示例
拉丁语 字母 'ſ' (U+017F) 是 'S' (U+0053) 的替代小写形式。
运行此代码
#include <clocale> #include <cwctype> #include <iostream> int main() { wchar_t c = L'\u017f'; // Latin small letter Long S ('ſ') std::cout << std::hex << std::showbase; std::cout << "in the default locale, towupper(" << static_cast<std::wint_t>(c) << ") = " << std::towupper(c) << '\n'; std::setlocale(LC_ALL, "en_US.utf8"); std::cout << "in Unicode locale, towupper(" << static_cast<std::wint_t>(c) << ") = " << std::towupper(c) << '\n'; }
输出
in the default locale, towupper(0x17f) = 0x17f in Unicode locale, towupper(0x17f) = 0x53
[编辑] 参见
将宽字符转换为小写 (函数) | |
使用本地化的 ctype 面使用转换为大写 (函数模板) | |
将字符转换为大写 (函数) | |
C 文档 针对 towupper
|