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


C++ towlower()用法及代码示例


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

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

towlower()原型

wint_t towlower( wint_t ch );

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

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

参数:

  • ch : 要转换的宽字符

返回:

  • towlower() 函数返回 ch 的小写版本(如果存在)。否则返回 ch。

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

#include <cwctype>
#include <cwchar>
#include <iostream>
#include <clocale>
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<wcslen(str); i++)
		putwchar(towlower(str[i]));

	return 0;
}

运行程序时,输出将是:

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

相关用法


注:本文由纯净天空筛选整理自 C++ towlower()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。