XSLT 2.0动态构建元素

时间:2013-05-07 13:00:34

标签: xslt xslt-2.0

我想编写一个xslt来转换以下XML:

<instruments>
<instrument>1111-A01</instrument>
<instrument>1111-A02</instrument>
<instrument>2222-A03</instrument>
<instrument>2222-A04</instrument>
</instruments>

到以下XML:

<references>
<reference>
    <id_celex>1111</id_celex>
    <article>A01</article>
    <article>A02</article>
</reference>
<reference>
    <id_celex>2222</id_celex>
    <article>A03</article>
    <article>A04</article>
</reference>
</references>

所以我需要将每个乐器分成' - '来获得 id_celex 文章。 然后,对于每个唯一 id_celex ,我需要使用 id_celex 及其文章创建参考。

昨天我开始使用xslt而且我已经卡住了:p

提前谢谢!

我有几行,但由于它不起作用,我不确定它是否有用...

1 个答案:

答案 0 :(得分:0)

看看:

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0">
  <xsl:output method="xml" indent="yes" encoding="UTF-8"/>

  <xsl:template match="instruments">
    <references>
      <xsl:for-each-group select="instrument" group-by="substring-before(text(),'-')">
        <reference>
          <id_celex>
            <xsl:value-of select="current-grouping-key()"/>
          </id_celex>
          <xsl:for-each select="current-group()">
            <article>
              <xsl:value-of select="substring-after(text(),'-')"/>
            </article>
          </xsl:for-each>
        </reference>
      </xsl:for-each-group>
    </references>
  </xsl:template>
</xsl:stylesheet>