towlower()是C /C++中的内置函数,它将给定的宽字符转换为小写。它在C++的cwctype头文件中定义。
- 它是头文件中的函数
,因此如果使用此函数,则必须使用此头文件 - 它等效于tolower()函数的wide-character。
用法:
wint_t towlower( wint_t ch )
参数:该函数接受单个强制性参数ch,该参数指定了我们必须转换为小写字母的宽字符。
返回值:如果该值存在,则该函数返回等于c的小写字母,否则返回c(未更改)。该值作为wint_t值返回,该值可以隐式转换为wchar_t。
以下示例程序旨在说明上述函数。
程序1:
// Program to illustrate
// towlower() function
#include <cwchar>
#include <cwctype>
#include <iostream>
using namespace std;
int main()
{
wchar_t str[] = L"GeeksforGeeks";
wcout << L"The lowercase version of \""
<< str << L"\" is ";
for (int i = 0; i < wcslen(str); i++)
// Function to convert the character
// into the lowercase version, if exists
putwchar(towlower(str[i]));
return 0;
}
输出:
The lowercase version of "GeeksforGeeks" is geeksforgeeks
程序2:
// Program to illustrate
// towlower() function
#include <cwchar>
#include <cwctype>
#include <iostream>
using namespace std;
int main()
{
wchar_t str[] = L"hello Ishwar 123!@#";
wcout << L"The lowercase version of \""
<< str << L"\" is ";
for (int i = 0; i < wcslen(str); i++)
// Function to convert the character
// into the lowercase version, if exists
putwchar(towlower(str[i]));
return 0;
}
输出:
The lowercase version of "hello Ishwar 123!@#" is hello ishwar 123!@#
相关用法
- C++ div()用法及代码示例
- C++ fma()用法及代码示例
- C++ log()用法及代码示例
- C++ regex_iterator()用法及代码示例
- C++ map key_comp()用法及代码示例
- C++ imag()用法及代码示例
- C++ real()用法及代码示例
- C++ wcsncpy()用法及代码示例
- C++ valarray tan()用法及代码示例
- C++ valarray pow()用法及代码示例
注:本文由纯净天空筛选整理自IshwarGupta大神的英文原创作品 towlower() function in C/C++。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。