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
  • 相关阅读:
    金融新手投标模块布局小Demo
    jQuery序列化Ajax提交表单
    javascript实现jsonp跨域问题+原理
    javascript返回顶部插件+源码
    mime中间件
    移动端meta标签的设置
    Node环境下实现less编译
    diogo谈框,仿prompt()方法布局
    linux驱动程序框架基础
    C/C++下Netbeans的配置
  • 原文地址:https://www.cnblogs.com/priarieNew/p/9754186.html
Copyright © 2011-2022 走看看