當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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