gpt4 book ai didi

c++ - Xpath 如何通过属性 c++ libxml2 删除子节点

转载 作者:搜寻专家 更新时间:2023-10-31 00:42:33 25 4
gpt4 key购买 nike

如何删除具有特定属性的 child ?我使用的是 c++/libxml2。到目前为止我的尝试(在示例中我想删除 id="2"的子节点):

Given XML:
<p>
<parent> <--- current context
<child id="1" />
<child id="2" />
<child id="3" />
</parent>
</p>

xmlNodePtr p = (parent node)// Parent node, in my example "current context"
xmlChar* attribute = (xmlChar*)"id";
xmlChar* attribute_value = (xmlChar*)"2";
xmlChar* xml_str;

for(p=p->children; p!=NULL; p=p->next){
xml_str = xmlGetProp(p, attribute);
if(xml_str == attribute_value){
// Remove this node
}
}
xmlFree(xml_str);

最佳答案

调用xmlUnlinkNode 来删除一个节点。如果需要,随后调用 xmlFreeNode 释放它:

for (p = p->children; p; ) {
// Use xmlStrEqual instead of operator== to avoid comparing literal addresses
if (xmlStrEqual(xml_str, attribute_value)) {
xmlNodePtr node = p;
p = p->next;
xmlUnlinkNode(node);
xmlFreeNode(node);
} else {
p = p->next;
}
}

关于c++ - Xpath 如何通过属性 c++ libxml2 删除子节点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11943318/

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