c++字串大小寫轉換

來源:互聯網
上載者:User
在C++中,由於沒有單獨定義string這個對象,所以字串的操作比較麻煩些。
字串轉換大小寫是一個常用的功能,今天就簡單總結下常用轉換的方法:

由於ANSI和Unicode在函數名上有差別,故都列出來,不過本人以Unicode為主。

【1.用C語言標準庫函數toupper,tolower】
標頭檔:cctype   c下面:ctype.h
轉大寫
Ansi版: int toupper(int c);</a>
Unicode版:int towupper(wint_t c);
MSDN: toupper, _toupper, towupper, _toupper_l, _towupper_l

轉小寫:
int tolower(
   int c
);

int towlower(
   wint_t c
);

MSDN:tolower

缺陷:只能轉換單個字元

Example:

    WCHAR wch = 'a';
    wch = towupper(wch); // A

【2.用C++語言標準庫函數_strlwr_s, _strupr_s】
注意:要使用安全的字串函數,不要用_strlwr。
標頭檔:string.h
轉小寫:
Ansi:
errno_t _strlwr_s(
   char *str,
   size_t numberOfElements
);

Unicode:
errno_t _wcslwr_s(
   wchar_t *str,
   size_t numberOfElements
);

注意:numberOfElements 要加上最後NULL字元長度,即numberOfElements = strlen(str) + 1;

MSDN:http://msdn.microsoft.com/en-us/library/y889wzfw(VS.80).aspx

轉大寫:
errno_t _strupr_s(
   char *str,
   size_t numberOfElements
);

errno_t _wcsupr_s(
   wchar_t * str,
   size_t numberOfElements
);

MSDN: http://msdn.microsoft.com/en-us/library/sae941fh(VS.80).aspx

Example:

    WCHAR wideStr[] = L"Abc";
    _wcslwr_s(wideStr, wcslen(wideStr) + 1); // abc
    _wcsupr_s(wideStr, wcslen(wideStr) + 1);// ABC

【3.std::string 轉換大小寫】
很遺憾,std::string 沒有提供大小寫轉換的功能,所以只能用STL中的transform結合toupper/tolower完成。
標頭檔: string, cctype,algorithm
轉小寫
transform(str.begin(),str.end(),str.begin(),tolower);
transform(wstr.begin(), wstr.end(), wstr.begin(), towlower);
轉大寫
transform(s.begin(), s.end(), s.begin(), toupper);
transform(wstr.begin(), wstr.end(), wstr.begin(), towupper);

Example:
    wstring wstr =L"Abc";
    transform(wstr.begin(), wstr.end(), wstr.begin(), towupper);

【4.boost庫中string_algorithm 提供了大小寫轉換函式to_lower 和 to_upper】

Example:
#include <boost/algorithm/string.hpp>   
using namespace std;   
using namespace boost;

wstring wstr =L"Abc";
boost::to_lower(wstr); // abc

====================================================================
附完整Example

**
* @file     test.cpp
* @brief    字元大小寫轉換
* @author   greenerycn@gmail.com
* @date     2009-7-1
*/

#include "stdafx.h"
#include <cstring>
#include <windows.h>
#include <cctype>
#include <algorithm>
#include "boost\algorithm\string.hpp"
using namespace std;

int wmain(int argc, WCHAR* argv[])
{
    char ch = 'a';
    ch = toupper(ch);

    WCHAR wch = 'a';
    wch = towupper(wch);

    WCHAR wideStr[] = L"Abc";
    _wcslwr_s(wideStr, wcslen(wideStr) + 1);

    _wcsupr_s(wideStr, wcslen(wideStr) + 1);

    wstring wstr =L"Abc";
    transform(wstr.begin(), wstr.end(), wstr.begin(), towupper);

    boost::to_lower(wstr);

    return 0;
}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.