towupper
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <wctype.h> 中定义
|
||
wint_t towupper( 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”,它可以通过以下方式获得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 towupper.
[编辑] 另请参阅
一个宽字符转换为小写 原文: converts a wide character to lowercase (函数) | |
字符转换为大写 (函数) | |
C++ documentation for towupper
|