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++。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。