4

std::wstringASCII 以外の文字を含むa の部分文字列を取得するにはどうすればよいですか?

次のコードは何も出力しません:
(テキストは、各文字が 2 バイトの 4 文字と「Hello」という単語を含むアラビア語です)

#include <iostream>
#include <string>

using namespace std;

int main()
{
    wstring s = L"سلام hello";
    wcout << s.substr(0,3) << endl;
    wcout << s.substr(4,5) << endl;

    return 0;
}
4

1 に答える 1

2

これはうまくいくはずです:Coliruでライブ

#include <iostream>
#include <string>
#include <boost/regex/pending/unicode_iterator.hpp>

using namespace std;

template <typename C>
std::string to_utf8(C const& in)
{
    std::string result;
    auto out = std::back_inserter(result);
    auto utf8out = boost::utf8_output_iterator<decltype(out)>(out);

    std::copy(begin(in), end(in), utf8out);
    return result;
}

int main()
{
    wstring s = L"سلام hello";

    auto first  = s.substr(0,3);
    auto second = s.substr(4,5);

    cout << to_utf8(first)  << endl;
    cout << to_utf8(second) << endl;
}

版画

سلا
 hell

率直に言って、あなたのsubstring電話は奇妙な仮定をしていると思います。そのための修正をすぐに提案させてください。

于 2013-08-19T22:20:23.767 に答える