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


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


C++ 中的towctrans() 函數根據指定的轉換轉換給定的寬字符。

towctrans() 函數在<cwctype> 頭文件中定義。

towctrans()原型

wint_t towctrans(wint_t wc, wctype_t desc);

towctrans() 函數對 desc 指定的寬字符 wc 應用轉換。

參數:

  • wc :要轉換的寬字符。
  • desc :從調用wctrans() 獲得的轉換。

返回:

  • 如果 wc 具有由 desc 指定的屬性,則 towctrans() 函數返回非零值,否則返回零。

示例:towctrans() 函數如何工作?

#include <cwctype>
#include <iostream>
#include <cwchar>
#include <clocale>
using namespace std;

int main()
{
	setlocale(LC_ALL, "en_US.UTF-8");
	wchar_t str[] = L"Ŝŵitĉhiňģ Ćăse";
	wcout << L"Before transformation" << endl;
	wcout << str << endl;

	for(int i=0; i<wcslen(str); i++)
	{
		if (iswctype(str[i], wctype("lower")))
		str[i] = towctrans(str[i], wctrans("toupper"));
		else if (iswctype(str[i], wctype("upper")))
		str[i] = towctrans(str[i], wctrans("tolower"));
	}

	wcout << L"After transformation" << endl;
	wcout << str << endl;
	
	return 0;
}

運行程序時,輸出將是:

Before transformation
Ŝŵitĉhiňģ Ćăse
After transformation
ŝŴITĈHIŇĢ ćĂSE

相關用法


注:本文由純淨天空篩選整理自 C++ towctrans()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。