使用 xpath,我想返回包含多个标题标签的所有部分标签。我试过了
count(concept/conbody/section:child:title>1)
并没有返回结果。我想在许多文件中运行这个 xpath 来定位那些 < 包含多个标题的部分的概念。
<concept>
<title>Topic Title</title>
<shortdesc>Short description text.</shortdesc>
<conbody>
<section>
<title>Section Title</title>
<p>paragraph text.</p>
</section>
<section>
<title>Section Title</title>
<p>paragraph text.</p>
<title>Section Title</title>
<p>paragraph text.</p>
</section>
</conbody>
</concept>