请输入您要查询的百科知识:

 

词条 tolower
释义

函数名: tolower

功 能: 把字符转换成小写字母,非字母字符不做出处理

头文件:在VC6.0可以是ctype.h或者stdlib.h,常用ctype.h

用 法: int tolower(int c);

说明:和函数int _tolower( int c );功能一样,但是_tolower在VC6.0中头文件要用ctype.h

C程序例:

#include<string.h>

#include<stdio.h>

#include<ctype.h>

#include<stdlib.h>

int main()

{int length, i;

char string[]="THIS IS A STRING";

length=strlen(string);

printf("%s\",string);

for(i=0;i<length;i++)

{string[i] = tolower(string[i]);

}

printf("%s\",string);

system("pause");

}

c++程序例:

#include <iostream>

#include <string>

#include <cctype>

using namespace std;

int main()

{

string str= "THIS IS A STRING";

for (int i=0; i <str.size(); i++)

{

str[i] = tolower(str[i]);

}

cout<<str<<endl;

return 0;

}

随便看

 

百科全书收录4421916条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。

 

Copyright © 2004-2023 Cnenc.net All Rights Reserved
更新时间:2025/1/26 15:25:44