当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。