📅  最后修改于: 2020-09-25 14:32:00             🧑  作者: Mango
towlower() 函数在
wint_t towlower( wint_t ch );
如果存在,towlower() 函数会将ch
转换为其小写版本。如果宽字符的小写版本不存在,则它保持不变。
从A到Z的大写字母分别转换为从a到z的小写字母。
#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