命名空间
变体
操作

towupper

来自 cppreference.com
< c‎ | string‎ | wide
定义在头文件 <wctype.h>
wint_t towupper( wint_t wc );
(自 C95 起)

如果可能,将给定的宽字符转换为大写。

内容

[编辑] 参数

wc - 要转换的宽字符

[编辑] 返回值

wc 的大写版本,或者如果当前 C 本地化中没有列出大写版本,则为未修改的 wc

[编辑] 备注

此函数只能执行 1:1 字符映射,例如,'ß' 的大写形式(除了一些例外情况)是双字符字符串 "SS",它无法通过 towupper 获得。

ISO 30112 指定了此映射中包含哪些 Unicode 字符对。

[编辑] 示例

#include <stdio.h>
#include <wchar.h>
#include <wctype.h>
#include <locale.h>
 
int main(void)
{
    wchar_t wc =  L'\u017f'; // Latin small letter Long S ('ſ')
    printf("in the default locale, towupper(%#x) = %#x\n", wc, towupper(wc));
    setlocale(LC_ALL, "en_US.utf8");
    printf("in Unicode locale, towupper(%#x) = %#x\n", wc, towupper(wc));
}

输出

in the default locale, towupper(0x17f) = 0x17f
in Unicode locale, towupper(0x17f) = 0x53

[编辑] 参考

  • C11 标准 (ISO/IEC 9899:2011)
  • 7.30.3.1.2 towupper 函数 (第 453 页)
  • C99 标准 (ISO/IEC 9899:1999)
  • 7.25.3.1.2 towupper 函数 (第 399 页)

[编辑] 另请参阅

将宽字符转换为小写
(函数) [编辑]
将字符转换为大写
(函数) [编辑]
C++ 文档 for towupper