我用法语单词解析xml文档时遇到了一些问题。 例如pêche 解析后我有这个:“p \ xc3 \ xaache”而不是“pêche”
这是我的代码:
for(pugi::xml_node child = parent.first_child(); child; child = child.next_sibling()){
std::string desc = child.child_value("word");
}
有什么建议吗? TNX。