如何获得std::wstring
的子字符串,其中包含一些非ASCII字符?
以下代码不输出任何内容:
(该文本是一个阿拉伯语单词,包含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;
}
答案 0 :(得分:0)
这应该有效: live on 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
电话做出了奇怪的假设。让我在一分钟内建议解决这个问题: