ctype::toupper
문자 범위 또는 문자는 대문자로 변환합니다.
CharType toupper(
CharType ch
) const;
const CharType *toupper(
CharType* first,
const CharType* last
) const;
매개 변수
ch
대문자로 변환할 문자입니다.first
문자 변환 하는 경우 범위의 첫 번째 문자에 대 한 포인터입니다.last
문자 변환 하는 경우 범위의 마지막 문자 바로 다음 문자에 대 한 포인터입니다.
반환 값
대문자 폼 매개 변수의 첫 번째 멤버 함수 반환 ch.대문자 없이 폼이 있는 경우 반환 ch.
두 번째 멤버 함수를 반환 합니다. last.
설명
첫 번째 멤버 함수를 반환 합니다. do_toupper(ch).두 번째 멤버 함수를 반환 합니다. do_toupper(first, last).
예제
// ctype_toupper.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 ).toupper
( string, string + strlen(string) );
cout << "The uppercase string is: " << string << endl;
}
요구 사항
헤더: <locale>
네임 스페이스: std