为什么boost :: locale :: to_title不返回预期的输出?

时间:2018-08-16 20:59:40

标签: c++ string boost title-case boost-locale

所以我已经找到了How to capitalize a word in a C++ string?,但是我尝试了与建议的类似的代码,包括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 Home 64位
  • 编译器:Microsoft Visual Studio 15.8.0
  • 平台:x64
  • 非默认编译选项:/std:c++latest
  • BOOST_VERSION:106700

编辑#1

vcpkg安装的Boost似乎没有被编译 使用ICU,显然boost::locale::to_title需要 正常运行。

2 个答案:

答案 0 :(得分:1)

vcpkg https://github.com/Microsoft/vcpkg)默认情况下安装Boost时,Boost :: locale和Boost :: regex库不依赖于ICU。

因此,与其安装这样的东西:

vcpkg install boost-locale:x64-windows boost-regex:x64-windows

我必须执行以下操作:

vcpkg install boost-locale[icu]:x64-windows boost-regex[icu]:x64-windows

这会自动获取并构建ICU库,并且(因为我已经安装了不带ICU的Boost,它会自动重建Boost库的 all

我希望这些库的Boost文档明确表示您需要ICU才能使用需要它的功能。

答案 1 :(得分:0)

title_case仅根据ICU的源代码为boost locale处理,而对于其他平台(如ex win32)则按原样返回输入值。

因此,要使用to_title函数,必须确保对ICU使用boost语言环境

virtual string_type convert(converter_base::conversion_type how,char_type const *begin,char_type const *end,int flags = 0) const 
{
    icu_std_converter<char_type> cvt(encoding_);
    icu::UnicodeString str=cvt.icu(begin,end);
    switch(how) {
        ...
        case converter_base::title_case:
            str.toTitle(0,locale_);
            break;
        case converter_base::case_folding:
            str.foldCase();
            break;
        default:
            ;
    }
    return cvt.std(str);
}