gpt4 book ai didi

c++ - 如何解析UTF-8中文字符串

转载 作者:行者123 更新时间:2023-11-30 05:19:30 25 4
gpt4 key购买 nike

我正在尝试解析可能包含中文字符的 std::string。例如对于一个字符串包含

哈囉hi你好hello

我想把它们分成6个字符串:, , hi, , 你好。现在,该字符串是通过使用文本文件中的 getline() 获取的。引用这篇文章How to use boost::spirit to parse UTF-8? ,这是我当前的代码:

#include <boost/regex/pending/unicode_iterator.hpp>
#include <boost/spirit/include/qi.hpp>
#include <boost/range.hpp>
#include <iterator>
#include <iostream>
#include <ostream>
#include <cstdint>
#include <string>

using namespace boost;
using namespace std;
using namespace std::string_literals;

int main()
{
string str = u8"哈囉hi你好hello"; //actually got from getline()
auto &&utf8_text = str;

u8_to_u32_iterator<const char*>
tbegin(begin(utf8_text)), tend(end(utf8_text));

vector<uint32_t> result;
spirit::qi::parse(tbegin, tend, *spirit::standard_wide::char_, result);
for(auto &&code_point : result) {
cout << code_point << ";";
}
}

但出现错误:对“开始”和“结束”的调用不明确。当我直接声明auto &&utf8_text = u8"哈啰hi你好你好"时可以,但是我不能这样写,因为字符串的内容是由getline()决定的>.

我也试过这个:

auto str = u8"你好,世界!";
auto &&utf8_text = str;

但仍然出现错误:没有匹配函数来调用“开始”和“结束”。

最佳答案

auto 与字符串字面量导致 char 指针。如果你想要std::string,你必须把它写出来。

关于c++ - 如何解析UTF-8中文字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41084664/

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