提问人:alooparantha 提问时间:7/27/2021 最后编辑:Andrew Trucklealooparantha 更新时间:8/1/2021 访问量:97
如何使用 tinyxml2 从包含特定子项的 xml 树中选择节点
How to select nodes from a xml tree that contains a specific children using tinyxml2
问:
从下面的树:
<a>
<b name = "b1"></b>
<b name = "b2">
<c/>
</b>
<b name = "b3"></b>
</a>
b 中具有子元素 c 的所有元素。简而言之,如何使用 tinyxml2 查询 xpath 的 xml 树。"/b[c]"
答: 暂无答案
评论
//b[c]
因为它是相对路径