大小写字母转换

C/C++库函数(tolower/toupper)实现字母的大小写转换
https://blog.csdn.net/laozhuxinlu/article/details/51539737
C/C++库函数(tolower/toupper)实现字母的大小写转换

本文将介绍库函数实现字母的大小写转换,常用到的是在ctype.h(C++中是cctype)库文件下定义的函数方法。首先来看一下C下tolower/toupper函数实现原型:

int tolower(int c)
{
if ((c >= ‘A’) && (c <= ‘Z’))
return c + (‘a’ - ‘A’);
return c;
}

int toupper(int c)
{
if ((c >= ‘a’) && (c <= ‘z’))
return c + (‘A’ - ‘a’);
return c;
}
接下来用两个小demo来演示一下。
C的实现:
#include //strlen
#include //printf
#include //tolower
int main()
{
int i;
char string[] = “THIS IS A STRING”;
printf("%s\n", string);
for (i = 0; i < strlen(string); i++)
{
string[i] = tolower(string[i]);
}
printf("%s\n", string);
printf("\n");
}
保存为xxx.c文件,执行: gcc -o xxx xxx.c 生成执行文件xxx。运行:./xxx 查看效果:

以上是C 的实现,同样的,在C++下的实现如下:
#include
#include
#include
using namespace std;
int main()
{
string str= “THIS IS A STRING”;
for (int i=0; i str[i] = tolower(str[i]);
cout< return 0;
}

你可能感兴趣的:(算法之路,大小写字母转换)