zoukankan      html  css  js  c++  java
  • windows API 第九篇 _tcslwr _strlwr _wcslwr _mbslwr

    将字符串转化为小写
    Convert a string to lowercase.

    函数原型:

    char *_strlwr( char *string );             //#include <string.h>  

    wchar_t *_wcslwr( wchar_t *string );                //#include <string.h> or <wchar.h>      _UNICODE Defined

    unsigned char *_mbslwr( unsigned char *string );             //#include <mbstring.h>     _MBCS Defined


    _tcslwr 只是一个宏,看有没有定义unicode 或者多字符集

    有它们对应的安全函数:
    _strlwr_s               _wcslwr_s         _mbslwr_s


    返回值:返回对应的小写字符串,对应的传入的参数也变了。应此在用的时候,要确保传入的参数正确,就没有必要返回值了
    Each of these functions returns a pointer to the converted string. Because the modification is done in place, the pointer returned is the same as the pointer passed as the input argument. No return value is reserved to indicate an error.

    举例:
    这里使用安全函数
    char szStr[] = "asdfDGFDS";
    //第二个参数一定要把‘’结尾算进去,不然会失败
    _strlwr_s(szStr, sizeof(szStr));    //szStr :asdfdgfds

     WCHAR szCh[] = L"QWERq";
    //第二个参数同上
     _wcslwr_s(szCh, sizeof(szCh));     //szCh:qwerq
  • 相关阅读:
    windows 10 查看电池损耗情况
    pycharm 远程显示 matplotlib
    关联矩阵与邻接矩阵 2018-11-27
    Determinats(行列式) 2018-11-23
    Ablation study 2018-11-10
    ODBC,实现图片循环写入Oracle数据库
    c#与java之比较(转自Jack.Wang's home)
    java中移位操作
    如何自学java迅速成为java高手
    一点点学习思考
  • 原文地址:https://www.cnblogs.com/priarieNew/p/9754186.html
Copyright © 2011-2022 走看看