📜  C++ towlower()

📅  最后修改于: 2020-09-25 14:32:00             🧑  作者: Mango

C++中的towlower() 函数将给定的宽字符转换为小写。

towlower() 函数在头文件中定义。

towlower()原型

wint_t towlower( wint_t ch );

如果存在,towlower() 函数会将ch转换为其小写版本。如果宽字符的小写版本不存在,则它保持不变。

从A到Z的大写字母分别转换为从a到z的小写字母。

towlower()参数

towlower()返回值

示例:towlower() 函数如何工作?

#include 
#include 
#include 
#include 
using namespace std;

int main()
{
    setlocale(LC_ALL, "en_US.UTF-8");

    wchar_t str[] = L"Ĵōhn Deńvėr";
    wcout << L"The lowercase version of \"" << str << L"\" is ";

    for (int i=0; i

运行该程序时,输出为:

The lowercase version of "Ĵōhn Deńvėr" is ĵōhn deńvėr