ctype::toupper
轉換字元的範圍為大寫。
CharType toupper(
CharType ch
) const;
const CharType *toupper(
CharType* first,
const CharType* last
) const;
參數
ch
要轉換的字元轉換為大寫。first
對第一個字元的指標會案例要轉換的字元範圍內。last
對字元的指標會在這種情況下要轉換的字元範圍內的最後一個字元之後。
傳回值
第 10% 成員函式傳回參數 ch的大寫字母形式。 如果大寫表單不存在,則傳回 ch。
第二 + 成成員函式會傳回 last。
備註
第 10% 成員函式會傳回 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;
}
需求
標題: <地區設定>
命名空間: std