我正在尝试清理一些 XML 文档并删除所有没有相应 id 的 idref。无论出于何种原因,我都没有得到解决这个愚蠢问题的语法。我以为会是这样的……
<xsl:template match="*">
<xsl:variable name="id_list" select="@id"/>
<xsl:if test="ref[not(contains($id_list, ./@rid))]">
<!-- do nothing -->
</xsl:if>
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
- ref 是元素名称,@rid 是 refid
样本输入将类似于以下内容......
<?xml version="1.0" encoding="iso-8859-1"?>
<article>
<bdy>
<p>In the second category [<ref rid="bibtts2009060795101" type="bib">2</ref>] and third category [<ref rid="bibtts2009060795102" type="bib">3</ref>]</p>
</bdy>
<bib>
<bb pubtype="article" reftype="nonieee" id="bibtts2009060795101"><au sequence="first"><fnm>T.</fnm><snm>Smith</snm></au></bb>
</bib>
</article>
第二个引用<ref rid="bibtts2009060795102" type="bib">3</ref>
将被删除