原型

char *strlwr(char *str, char ch, unsigned n);


功能

字符串中的大写字母转换为小写。


返回值

返回指向s的指针


注意

strupr不是标准C库函数,只能在VC中使用。在linux gcc环境下需要自行定义这个函数。


示例

#include <string.h>
#include <iostream.h>
void main(void)
{
    char sTmp[100];
    sTmp[0] = '\0';
    strcpy(sTmp,"Golden Global View");
    cout<<sTmp<<endl;
    cout<<strlwr(sTmp)<<endl;
}

结果:
Golden Global View
GOLDEN GLOBAL VIEW
Logo

更多推荐