- C 标准库
- C 库 - 首页
- C 库 - <assert.h>
- C 库 - <complex.h>
- C 库 - <ctype.h>
- C 库 - <errno.h>
- C 库 - <fenv.h>
- C 库 - <float.h>
- C 库 - <inttypes.h>
- C 库 - <iso646.h>
- C 库 - <limits.h>
- C 库 - <locale.h>
- C 库 - <math.h>
- C 库 - <setjmp.h>
- C 库 - <signal.h>
- C 库 - <stdalign.h>
- C 库 - <stdarg.h>
- C 库 - <stdbool.h>
- C 库 - <stddef.h>
- C 库 - <stdio.h>
- C 库 - <stdlib.h>
- C 库 - <string.h>
- C 库 - <tgmath.h>
- C 库 - <time.h>
- C 库 - <wctype.h>
- C 标准库资源
- C 库 - 快速指南
- C 库 - 有用资源
- C 库 - 讨论
C 库 - iswupper() 函数
C 的wctype库的iswupper()函数用于检查给定的宽字符(由wint_t表示)是否为大写字母,即“ABCDEFGHIJKLMNOPQRSTUVWXYZ”中的一个或当前区域设置特有的任何大写字母。
此函数可用于字符验证、大小写转换、字符串处理或标记化和解析。
语法
以下是iswupper()函数的C库语法:
int iswupper( wint_t ch )
参数
此函数接受一个参数:
-
ch - 它是要检查的类型为'wint_t'的宽字符。
返回值
如果宽字符是大写字母,则此函数返回非零值,否则返回零。
示例 1
以下是用C语言编写的基本示例,演示了iswupper()函数的使用。
#include <stdio.h> #include <wctype.h> #include <wchar.h> int main() { wchar_t wc = L'A'; if (iswupper(wc)) { wprintf(L"The character '%lc' is a uppercase letter.\n", wc); } else { wprintf(L"The character '%lc' is not a uppercase letter.\n", wc); } return 0; }
输出
以下是输出:
The character 'A' is a uppercase letter.
示例 2
我们创建一个C程序,并使用iswupper()来计算给定宽字符中大写字母的数量。
#include <stdio.h> #include <wctype.h> #include <wchar.h> int main() { // Define a wide string with mixed characters wchar_t str[] = L"Hello, tutorialspoint India"; int uppercaseCount = 0; // Iterate over each character in the wide string for (int i = 0; str[i] != L'\0'; i++) { if (iswupper(str[i])) { uppercaseCount++; } } // Print the result wprintf(L"The wide string \"%ls\" contains %d uppercase letter(s).\n", str, uppercaseCount); return 0; }
输出
以下是输出:
The wide string "Hello, tutorialspoint India" contains 2 uppercase letter(s).
示例 3
以下为另一个示例,当我们在给定的宽字符中获得大写字母时,我们打印大写字母。
#include <stdio.h> #include <wctype.h> #include <wchar.h> int main() { wchar_t str[] = L"Hello, tutorialspoint India"; // Iterate over each character in the wide string for (int i = 0; str[i] != L'\0'; i++) { if (iswupper(str[i])) { wprintf(L"%lc", str[i]); } } return 0; }
输出
以下是输出:
HI
c_library_wctype_h.htm
广告