C++ 中的towupper() 函數將給定的寬字符轉換為大寫。
towupper() 函數在<cwctype> 頭文件中定義。
towupper()原型
wint_t towupper( wint_t ch );
towupper() 函數將 ch
轉換為其大寫版本(如果存在)。如果寬字符的大寫版本不存在,則保持不變。
從 a 到 z 的小寫字母分別轉換為從 A 到 Z 的大寫字母。
參數:
ch
: 要轉換的寬字符
返回:
- towupper() 函數返回
ch
的大寫版本(如果存在)。否則返回 ch。
示例:towupper() 函數如何工作?
#include <cwctype>
#include <cwchar>
#include <iostream>
#include <clocale>
using namespace std;
int main()
{
setlocale(LC_ALL, "en_US.UTF-8");
wchar_t str[] = L"Ĵōhn Deńvėr";
wcout << L"The uppercase version of \"" << str << L"\" is ";
for (int i=0; i<wcslen(str); i++)
putwchar(towupper(str[i]));
return 0;
}
運行程序時,輸出將是:
The uppercase version of "Ĵōhn Deńvėr" is ĴŌHN DEŃVĖR
相關用法
- C++ towupper()用法及代碼示例
- C++ towlower()用法及代碼示例
- C++ towctrans()用法及代碼示例
- C++ toupper()用法及代碼示例
- C++ tolower()用法及代碼示例
- C++ complex tanh()用法及代碼示例
- C++ type_info name用法及代碼示例
- C++ tellg()用法及代碼示例
- C++ type_info before用法及代碼示例
- C++ tgamma()用法及代碼示例
- C++ complex tan()用法及代碼示例
- C++ trunc()用法及代碼示例
- C++ time()用法及代碼示例
- C++ typeinfo::bad_cast用法及代碼示例
- C++ typeinfo::bad_typeid用法及代碼示例
- C++ tanh()用法及代碼示例
- C++ tan()用法及代碼示例
- C++ tmpnam()用法及代碼示例
- C++ type_traits::is_null_pointer用法及代碼示例
- C++ tmpfile()用法及代碼示例
注:本文由純淨天空篩選整理自 C++ towupper()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。