所以我已经找到了如何在 C++ 字符串中大写单词?,但我尝试了与建议的类似代码,包括 Boost::locale 示例中提供的代码。我还将包括我的代码当前是什么以及预期和实际输出是什么。所以我试图理解为什么我没有得到预期的输出。
代码
#include <iostream>
#include <string>
#include <boost/locale.hpp>
#include <boost/algorithm/string/case_conv.hpp>
int main() {
using namespace std;
using namespace boost::locale;
generator gen;
auto loc = gen("");
locale::global(loc);
cout.imbue(loc);
ios_base::sync_with_stdio(false);
cout << to_upper("hello!") << " " << boost::to_upper_copy("hello!"s) << endl;
cout << to_lower("HELLO!") << " " << boost::to_lower_copy("HELLO!"s) << endl;
cout << to_title("hELLO!") << endl;
cout << fold_case("HELLO!") << endl;
return 0;
}
预期产出
HELLO! HELLO!
hello! hello!
Hello!
hello!
实际输出
HELLO! HELLO!
hello! hello!
hELLO!
hello!
附加信息
- 操作系统:Windows 10 家庭版 64 位
- 编译器:Microsoft Visual Studio 15.8.0
- 平台:x64
- 非默认编译选项:
/std:c++latest
- 提升版本:106700
编辑#1
似乎 vcpkg 安装的 Boost 没有使用 ICU 编译,这显然是boost::locale::to_title
正常运行所必需的。