towupper
来自 cppreference.com
定义在头文件 <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