该功能towlower()
在 Visual Studio 2012 中似乎不起作用。这是一个示例:
#include <string>
#include <iostream>
#include <io.h>
#include <fcntl.h>
#include <wctype.h>
using namespace std;
int main()
{
_setmode(_fileno(stdout), _O_U8TEXT);
wcout << (wchar_t)towlower(L'Я') << endl;
system("pause");
return 0;
}
字符保持大写。以前在这里问过类似的问题,但我找不到任何解决方案。
我可以使用另一种方法更改为小写吗?