使用XSLT基于属性值移动XML元素

时间:2013-01-29 09:16:10

标签: xml xslt

我需要根据属性值将XML元素移动到相应的位置。当id的属性值匹配时,元素<m:footnote>应从<m:endnote>移动到相应的位置。

示例XML:

<m:chapter xmlns:m="http://www.w3.org/1998/Math/MathML">
  <m:front>
    <m:p>This is <m:footnote id="1"/>para</m:p>
  </m:front>
  <m:body>
    <m:p>This is <m:footnote id="2"/>para</m:p>
    <m:p>This is <m:footnote id="3"/>para</m:p>
    <m:p>This is <m:footnote id="4"/>para</m:p>
  </m:body>
  <m:endnote>
    <m:footnote id="1">This is footnote 1</m:footnote>
    <m:footnote id="2">This is footnote 2</m:footnote>
    <m:footnote id="3">This is footnote 3</m:footnote>
    <m:footnote id="4">This is footnote 4</m:footnote>
  </m:endnote>
</m:chapter>

需要输出:

<?xml version='1.0' encoding='UTF-8' ?>
<m:chapter xmlns:m="http://www.w3.org/1998/Math/MathML">
<m:front>
<m:p>This is <m:footnote id="1">This is footnote 1</m:footnote>para</m:p>
</m:front>
<m:body>
<m:p>This is <m:footnote id="2">This is footnote 2</m:footnote>para</m:p>
<m:p>This is <m:footnote id="3">This is footnote 3</m:footnote>para</m:p>
<m:p>This is <m:footnote id="4">This is footnote 4</m:footnote>>para</m:p>
</m:body>
</m:chapter>

XSLT尝试过:

<?xml version='1.0'?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:m="http://www.w3.org/1998/Math/MathML" exclude-result-prefixes="m">
<xsl:output method="xml" encoding="UTF-8" indent="no"/>
<xsl:template match="@* | node()">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="m:chapter">
<xsl:copy>
<xsl:apply-templates/>
<xsl:for-each select="child::*/descendant::m:footnote">
<xsl:choose>
<xsl:when test="not(parent::m:endnote)">
<xsl:if test="string(self::m:footnote/@id) = string('ancestor::m:chapter/m:endnote/m:footnote/@id')">
<xsl:copy-of select="m:chapter/m:endnote/m:footnote"/>
</xsl:if>
</xsl:when>
</xsl:choose>
</xsl:for-each>
</xsl:copy>
</xsl:template>
<xsl:template match="m:endnote"></xsl:template>
</xsl:stylesheet>

1 个答案:

答案 0 :(得分:3)

这应该这样做:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
      xmlns:m="http://www.w3.org/1998/Math/MathML" exclude-result-prefixes="m">
  <xsl:output method="xml" encoding="UTF-8" indent="no"/>
  <xsl:key name="kEndnote" match="m:endnote/m:footnote" use="@id"/>
  <xsl:key name="kFootnoteRef" match="m:p/m:footnote" use="@id"/>

  <xsl:template match="@* | node()">
    <xsl:copy>
      <xsl:apply-templates select="@* | node()"/>
    </xsl:copy>
  </xsl:template>

  <xsl:template match="m:footnote">
    <xsl:copy>
      <xsl:apply-templates select="@*" />
      <xsl:value-of select="key('kEndnote', @id)"/>
    </xsl:copy>
  </xsl:template>

  <xsl:template match="m:endnote[not(m:footnote[not(key('kFootnoteRef', @id))])]" />
  <xsl:template match="m:endnote/m:footnote[key('kFootnoteRef', @id)]" />
</xsl:stylesheet>

在样本输入上运行时,会产生:

<m:chapter xmlns:m="http://www.w3.org/1998/Math/MathML">
  <m:front>
    <m:p>This is <m:footnote id="1">This is footnote 1</m:footnote>para</m:p>
  </m:front>
  <m:body>
    <m:p>This is <m:footnote id="2">This is footnote 2</m:footnote>para</m:p>
    <m:p>This is <m:footnote id="3">This is footnote 3</m:footnote>para</m:p>
    <m:p>This is <m:footnote id="4">This is footnote 4</m:footnote>para</m:p>
  </m:body>

</m:chapter>

当您的样本输入在第2和第3 <m:p>被删除时运行时,会产生:

<m:chapter xmlns:m="http://www.w3.org/1998/Math/MathML">
  <m:front>
    <m:p>This is <m:footnote id="1">This is footnote 1</m:footnote>para</m:p>
  </m:front>
  <m:body>
    <m:p>This is <m:footnote id="4">This is footnote 4</m:footnote>para</m:p>
  </m:body>
  <m:endnote>

    <m:footnote id="2">This is footnote 2</m:footnote>
    <m:footnote id="3">This is footnote 3</m:footnote>

  </m:endnote>
</m:chapter>