C语言中关于ctype.h的字符函数
程序员文章站
2022-04-08 16:32:14
...
刷题中遇到字母大小写变换总是要写一个很长的if判断条件,所以专门查找了关于C中的头文件发现专门为字符准备的函数
首先有下面用法
函数名 | 返回结果 |
---|---|
isalnum() | 如果当前字符是字母,数字,返回真 |
isalpha() | 如果当前字符是字母,返回真 |
isdigit() | 如果当前字符为数字,返回真 |
islower() | 如果当前字符为小写字母,返回真 |
isupper() | 如果当前字符为大写字母,返回真 |
ispunct() | 如果当前字符为标点符号(除空格,字母,数字以外的可打印字符),返回真 |
isblank() | 空白字符(空格,换行符等),返回真 |
ctype.h函数中大小写转换
函数名 | 返回结果 |
---|---|
tolower() | 如果当前字符为大写字符,返回小写字符,否则返回原参数 |
toupper() | 如果当前字符为小写字符,返回大写字符,否则返回原参数 |
例:
#include <cstdio>
#include <cstring>
#include <ctype.h>
int main()
{
char str1[100];
gets_s(str1);
printf("初试字符串:str1 = \n");
puts(str1);
int len1 = strlen(str1);
for (int i = 0; i < len1; i++)
{
if (isupper(str1[i]))
{
str1[i]=tolower(str1[i]);
}
else if (islower(str1[i]))
{
str1[i]=toupper(str1[i]);
}
}
printf("改变后字符串:str1 = \n");
puts(str1);
return 0;
}