std::towupper
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <cwctype> 中定义
|
||
std::wint_t towupper( std::wint_t ch ); |
||
。给定的宽字符转换为大写,如果可能的话.
原文:
Converts the given wide character to uppercase, if possible.
目录 |
[编辑] 。参数。
ch | - | 。宽字符进行转换。
|
===。 返回值。===
。大写版本
ch
或改性ch
如果没有大写版本中列出了当前的C语言环境.原文:
Uppercase version of
ch
or unmodified ch
if no uppercase version is listed in the current C locale.[编辑] 。注释。
。只有1:1的字符映射可以通过此功能,例如“SS”是大写的形式(有一些例外)的两个字符“SS”,它可以通过以下方式获得std::towupper.
原文:
Only 1:1 character mapping can be performed by this function, e.g. the uppercase form of 'ß' is (with some exceptions) the two-character string "SS", which cannot be obtained by std::towupper.
[编辑] 。为例。
。拉丁。字母's'(U 017 F)。是替代小写形式的'S'(U 0053)。
原文:
The latin 。字母's'(U 017 F)。 is the alternative lowercase form of 'S' (U+0053)
#include <iostream> #include <cwctype> #include <clocale> 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(" << (std::wint_t)c << ") = " << std::towupper(c) << '\n'; std::setlocale(LC_ALL, "en_US.utf8"); std::cout << "in Unicode locale, towupper(" << (std::wint_t)c << ") = " << std::towupper(c) << '\n'; }
输出:
in the default locale, towupper(0x17f) = 0x17f in Unicode locale, towupper(0x17f) = 0x53
[编辑] 。另请参阅。
一个宽字符转换为小写 原文: converts a wide character to lowercase (函数) | |
字符转换为大写的语言环境使用的CTYPE方面的 原文: converts a character to uppercase using the ctype facet of a locale (函数模板) | |
字符转换为大写 (函数) | |
C documentation for towupper
|