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