gpt4 book ai didi

c++ - 打印所有 std::locale 名称 (Windows)

转载 作者:IT老高 更新时间:2023-10-28 23:14:03 25 4
gpt4 key购买 nike

我的程序检查德语中的大写字母。

#include <iostream>
#include <boost/algorithm/string/classification.hpp>
#include <boost/locale.hpp>

using namespace std;

int main()
{
locale::global(locale("Germany_german"));
//locale::global(locale("de_DE.UTF-8")); //Also tried "de_DE.UTF-8", but does not work

string str1 = "über";
cout << boolalpha << any_of(str1.begin(), str1.end(), boost::algorithm::is_upper()) << endl;

string str2 = "Ää";
cout << boolalpha << any_of(str2.begin(), str2.end(), boost::algorithm::is_upper()) << endl;

return 0;
}

程序因控制台错误而崩溃

terminate called after throwing an instance of 'std::runtime_error'
what(): locale::facet::_S_create_c_locale name not valid

我不知道确切的语言环境字符串是什么,“de_DE.UTF-8”也不行。

有什么方法可以获取操作系统支持的所有语言环境的准确语言环境名称字符串。可能在头文件的某个地方有一个列表,但我什么也没看到<locale>标题。

最佳答案

我编写了一个程序来打印所有支持的语言环境名称。

#include <Windows.h>

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <ostream>
#include <iterator>

using namespace std;

vector<wstring> locals;

BOOL CALLBACK MyFuncLocaleEx(LPWSTR pStr, DWORD dwFlags, LPARAM lparam)
{
locals.push_back(pStr);
return TRUE;
}

int _tmain(int argc, _TCHAR* argv[])
{
EnumSystemLocalesEx(MyFuncLocaleEx, LOCALE_ALL, NULL, NULL);

for (vector<wstring>::const_iterator str = locals.begin(); str != locals.end(); ++str)
wcout << *str << endl;

wcout << "Total " << locals.size() << " locals found." << endl;

return 0;
}

效果很好。

...
de
de-AT
de-CH
de-DE
de-DE_phoneb
de-LI
de-LU
...
Total 429 locals found.

关于c++ - 打印所有 std::locale 名称 (Windows),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27614666/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com