我引用了xml_node
。有没有办法将其更改为注释类型节点(node_comment
)?基本上是对节点进行评论。
答案 0 :(得分:0)
要将元素转换为注释,您需要使用以下内容:
std::ostringstream oss;
node.print(oss, "", pugi::format_raw);
auto comment = node.parent().insert_child_before(pugi::node_comment, node);
comment.set_value(oss.str().c_str());
node.parent().remove_child(node);