在头文件cwctype.h中指定了C /C++中的wctrans(),并返回了与转换相对应的wctrans_t类型的值。特定的语言环境可以接受字符的多种转换。以下是一些公认的转换:
- “tolower”->小写| wl
- “toupper”->大写|拖曳
用法:
wctrans_t wctrans( const char* string )
参数:该函数接受一个强制性参数字符串,该字符串指定标识字符转换的字符串。
返回值:该函数返回两个值,如下所示:
- 如果当前语言环境未提供映射,则它将返回零。
- 否则,它返回可以与towctrans()一起用于映射宽字符的对象。
以下示例程序旨在说明上述函数:
程序1:
// C++ program to illustrate
// towctrans() function
#include <bits/stdc++.h>
using namespace std;
int main()
{
// initilize the string
wchar_t string[] = L"GeeksForGeeks";
wcout << L"Initial string -> " << string << endl;
wctype_t first = wctype("lower");
wctype_t second = wctype("upper");
// traverse each character and convert
// lower case to upper and upper to lower
for (int i = 0; i < wcslen(string); i++) {
if (iswctype(string[i], first))
string[i] = towctrans(string[i], wctrans("toupper"));
else if (iswctype(string[i], second))
string[i] = towctrans(string[i], wctrans("tolower"));
}
// print the string after transformation
wcout << L"After transformation -> " << string << endl;
return 0;
}
输出:
Initial string -> GeeksForGeeks After transformation -> gEEKSfORgEEKS
程序2:
// C++ program to illustrate
// towctrans() function
#include <bits/stdc++.h>
using namespace std;
int main()
{
// initilize the string
wchar_t string[] = L"gfg";
wcout << L"Initial string -> " << string << endl;
wctype_t first = wctype("lower");
wctype_t second = wctype("upper");
// traverse each character and convert
// lower case to upper and upper to lower
for (int i = 0; i < wcslen(string); i++) {
if (iswctype(string[i], first))
string[i] = towctrans(string[i], wctrans("toupper"));
else if (iswctype(string[i], second))
string[i] = towctrans(string[i], wctrans("tolower"));
}
// print the string after transformation
wcout << L"After transformation -> " << string << endl;
return 0;
}
输出:
Initial string -> gfg After transformation -> GFG
相关用法
- C++ log()用法及代码示例
- C++ div()用法及代码示例
- C++ fma()用法及代码示例
- C++ valarray cos()用法及代码示例
- C语言 strlwr()用法及代码示例
- C++ valarray end()用法及代码示例
- C++ map rbegin()用法及代码示例
- C++ valarray tan()用法及代码示例
- C++ map key_comp()用法及代码示例
- C++ wcsncpy()用法及代码示例
注:本文由纯净天空筛选整理自AmanSrivastava1大神的英文原创作品 wctrans() function in C/C++。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。