码迷,mamicode.com
首页 > 其他好文 > 详细

c 大小写转换

时间:2019-05-20 13:29:02      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:大小写转换   int   color   转换函数   putc   type   include   函数   return   

 

/* towctrans example */
#include <stdio.h>
#include <wctype.h>
int main ()
{
    int i=0;
    wchar_t str[] = L"Test String.\n";
    wchar_t c;
    wctype_t check = wctype("lower");   /* 小写类型 */
    wctrans_t trans = wctrans("toupper");   /* 小写函数构造 */
    while (str[i])
    {
        c = str[i];
        /*如果是小写就转为大写*/
        if (iswctype(c,check)){      /* 判断是否时小写类型 */
            c = towctrans(c,trans); /* 将要使用的函数传入转换函数 */
        }
        putchar (c);  /*输出 c */
        i++;
    }
    return 0;
}

 

c 大小写转换

标签:大小写转换   int   color   转换函数   putc   type   include   函数   return   

原文地址:https://www.cnblogs.com/sea-stream/p/10893322.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!