다음을 통해 공유


ctype::tolower

문자 범위 또는 문자는 소문자로 변환합니다.

CharType tolower(
    CharType ch
) const;
const CharType *tolower(
    CharType* first, 
    const CharType* last,
) const;

매개 변수

  • ch
    소문자로 변환할 문자입니다.

  • first
    문자 변환 하는 경우 범위의 첫 번째 문자에 대 한 포인터입니다.

  • last
    문자 변환 하는 경우 범위의 마지막 문자 바로 다음 문자에 대 한 포인터입니다.

반환 값

멤버 함수는 첫 번째 매개 변수는 소문자 형태의 반환 ch.없는 소문자 폼이 있는 경우 반환 ch.

두 번째 멤버 함수를 반환 합니다. last.

설명

첫 번째 멤버 함수를 반환 합니다. do_tolower(ch).두 번째 멤버 함수를 반환 합니다. do_tolower(first, last).

예제

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

int main( )
{
   locale loc1 ( "German_Germany" );
   
   char string[] = "HELLO, MY NAME IS JOHN";

   use_facet<ctype<char> > ( loc1 ).tolower
      ( string, string + strlen(string) );
   cout << "The lowercase string is: " << string << endl;
}
  

요구 사항

헤더: <locale>

네임 스페이스: std

참고 항목

참조

ctype Class