Поделиться через


tolower

Преобразует символы в нижний регистр.

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

Параметры

  • _Ch
    Символ, который необходимо преобразовать в нижний регистр.

  • _Loc
    Языковой стандарт, содержащий символ, который необходимо преобразовать.

Возвращаемое значение

Символ, преобразованный в нижний регистр.

Заметки

Функция возвращает > шаблона >CharType<ctype< use_facet(_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;
}

Output

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 пространство имен: