strlwr,strupr函数

函数原型:extern char *strlwr(char *str)

                    extern char *strupr(char *s)

参数说明:str为要转换的字符串。
       
所在库名:#include <string.h>
 
函数功能:将字符串str中的大(小)写字母转换成为小(大)写字母,其它的不进行转换。
 
返回说明:返回转换后的字符串的指针。

其它说明:暂时无。

实例:

以strlwr为例,strupr类似。

#include  < string .h >
#include 
< stdio.h >
int  main()
... {
    
char str[100]="SKY2098,persist IN DOING AGAIN!";
    
char *strtemp=NULL; 
    strtemp
=strlwr(str);   //将字符串str中的大写字母转换为小写字母
    printf("The string str converted is:  %s ", strtemp);
    
return 0;
}

在VC++ 6.0 编译运行:

成功地将字符串SKY2098,persist IN DOING AGAIN!中的大写字母全部转换为小写字母。


你可能感兴趣的:(strlwr,strupr函数)