0

我有以下 xml 文件:

<generic_etd>
  <dc.contributor>NSERC</dc.contributor>
  <dc.creator>gradstudent</dc.creator>
  <dc.contributor>John Smith</dc.contributor>
  <dc.contributor.role>Advisor</dc.contributor.role>
  <dc.date>2013-05-07</dc.date>
  <dc.format>30 pages</dc.format>
  <dc.format>545709 bytes</dc.format>
  <dc.contributor>Jane Smith</dc.contributor>
  <dc.contributor.role>Committee Member</dc.contributor.role>
</generic_etd>

我想使用 xslt 1.0 将其转换为以下内容:

<etd_ms>
  <etd_ms:contributor>NSERC</etd_ms:contributor>
  <etd_ms:creator>gradstudent</etd_ms:creator>
  <etd_ms:contributor role="Advisor">John Smith</etd_ms:contributor>
  <etd_ms:date>2013-05-07</etd_ms:date>
  <etd_ms:format>30 pages</etd_ms:format>
  <etd_ms:format>545709 bytes</etd_ms:format>
  <etd_ms:contributor role="Committee Member">Jane Smith</etd_ms:contributor>
</etd_ms>

我可以进行 etd_ms 替换,但我遇到的困难是将contributor.role 行作为contributor 行的属性插入。我是 xslt 转换的新手,所以这让我很难过。有什么建议么?

这是到目前为止的代码(为简洁起见,我省略了开始和结束标签。我还要感谢 Navin Rawat,他提供了比我最初拥有的更简洁的代码版本):

<xsl:output method="xml" indent="yes" encoding="UTF-8"/>
<xsl:strip-space elements="*"/>

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

</xsl:template>

<xsl:template match="*">
    <xsl:choose>
        <xsl:when test="name()='generic_etd'">
            <etd_ms:thesis>
                <xsl:apply-templates/>
            </etd_ms:thesis>
        </xsl:when>
        <xsl:otherwise>
            <xsl:variable name="newtag" select="concat('etd_ms:',substring-after(name(),'.'))"/>
            <xsl:choose>
                <xsl:when test="contains($newtag, '.')">
                    <xsl:element name="{substring-before($newtag,'.')}">
                        <xsl:apply-templates/>
                    </xsl:element>
                </xsl:when>
                <xsl:otherwise>
                    <xsl:element name="{$newtag}">
                        <xsl:apply-templates/>
                    </xsl:element>
                </xsl:otherwise>
            </xsl:choose>
        </xsl:otherwise>
    </xsl:choose>
</xsl:template>

谢谢。

4

1 回答 1

0

我设法自己找出解决方案。本质上,我创建了一个模板,我从原始问题中包含的上一个 xslt 文件中调用该模板。这是使用的模板:

<xsl:template name="contributor-role">
  <xsl:param name="element-tag"/>
  <xsl:choose>
    <!-- check if the next element is a contributer role -->
    <xsl:when test="following-sibling::dc.contributor.role[1]">
      <xsl:element name="{$element-tag}">
        <!-- add the role as an attribute of the current element-->
        <xsl:attribute name="role">
          <xsl:value-of select="following-sibling::dc.contributor.role[1]"/>
        </xsl:attribute>
        <xsl:apply-templates/>
      </xsl:element>
    </xsl:when>
    <xsl:otherwise>
      <!-- else process the element normally -->
      <xsl:element name="{$element-tag}">
        <xsl:apply-templates/>
      </xsl:element>
    </xsl:otherwise>
  </xsl:choose>
</xsl:template>
于 2013-05-10T18:55:53.813 回答