當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C++ towupper()用法及代碼示例


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()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。