Share via


tolower

文字を小文字に変換します。

template<Class CharType>
   CharType tolower(
      CharType _Ch, 
      const locale& _Loc
   )

パラメーター

  • _Ch
    小文字に変換する文字。

  • _Loc
    変換する文字を含むロケール。

戻り値

小文字に変換する文字。

解説

このテンプレート関数は use_facet<ctype<CharType> > を返します (_Loc)。tolower (_Ch)。

使用例

// locale_tolower.cpp
// compile with: /EHsc
#include <locale>
#include <iostream>
using namespace std;

int main( )   
{
   locale loc ( "German_Germany" );
   char result1 = tolower ( 'H', loc );
   cout << "The lower case of 'H' in the locale is: "
        << result1 << "." << endl;
   char result2 = tolower ( 'h', loc );
   cout << "The lower case of 'h' in the locale is: "
        << result2 << "." << endl;
   char result3 = tolower ( '$', loc );
   cout << "The lower case of '$' in the locale is: "
        << result3 << "." << endl;
}

出力

The lower case of 'H' in the locale is: h.
The lower case of 'h' in the locale is: h.
The lower case of '$' in the locale is: $.

必要条件

ヘッダー: <locale>

名前空間: std