私が(残念ながら)使用しなければならないソフトウェアは、複数のデータセット(「ドキュメント1」、「ドキュメント2」などを参照)を含むXMLファイルを生成しますが、ラッピング<document>
タグで区切ることはありません。次のようになります。
<print>
<section>
<col1>*****</col1>
<col2>Document 1</col2>
</section>
<section>
<col1>Title</col1>
<col2>Title 1</col2>
</section>
<section>
<col1>Year</col1>
<col2>2011</col2>
</section>
<section />
<section>
<col1>*****</col1>
<col2>Document 2</col2>
</section>
<section>
<col1>Title</col1>
<col2>Title 2</col2>
</section>
<section>
<col1>Year</col1>
<col2>2012</col2>
</section>
<section />
<section>
<col1>*****</col1>
<col2>Document 3</col2>
</section>
<section>
<col1>Title</col1>
<col2>Title 3</col2>
</section>
<section>
<col1>Year</col1>
<col2>2013</col2>
</section>
<section />
...
</print>
ご覧のとおり、すべての新しい「ドキュメント」は<col1>*****</col1>
最初の<section></section>
タグで始まり、空のタグで終わります(より具体的には、その後に続きます)<section />
。
私がやりたいのは、各<col2>
値を取り出してラッピングタグに入れることです。したがって、最終的に、ドキュメントの個別のデータセットを取得する必要があります。結果は次のようになります。
<print>
<document>
<docno>Document 1</docno>
<title>Title 1</title>
<year>2011</year>
</document>
<document>
<docno>Document 2</docno>
<title>Title 2</title>
<year>2012</year>
</document>
<document>
<docno>Document 3</docno>
<title>Title 3</title>
<year>2013</year>
</document>
</print>
したがって、すべての<col2>
値を取得し、それらを新しい要素に入れて、<document>
タグでラップする必要があります。次のXSLTで試してみましたが、部分的に成功しました(<col2>
値を取得できます)が、<xsl:when>
タグ内(値をラップしようとしています)では、タグがすぐに閉じられない<col2>
ため、エラーがスローされます。<document>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" indent="yes"/>
<xsl:template name="content">
<xsl:if test="col1='*****'">
<xsl:element name="docno">
<xsl:value-of select="col2"/>
</xsl:element>
</xsl:if>
<xsl:if test="col1='Title'">
<xsl:element name="title">
<xsl:value-of select="col2"/>
</xsl:element>
</xsl:if>
<xsl:if test="col1='Year'">
<xsl:element name="year">
<xsl:value-of select="col2"/>
</xsl:element>
</xsl:if>
</xsl:template>
<xsl:template match="/">
<xsl:element name="print">
<xsl:for-each select="print/section">
<xsl:choose>
<xsl:when test="col1='*****'">
<xsl:element name="document">
</xsl:when>
<xsl:when test="not(col1/node())">
</xsl:element>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="content"/>
</xsl:otherwise>
</xsl:choose>
</xsl:for-each>
</xsl:element>
</xsl:template>
</xsl:stylesheet>
XSLTでは、条件付きでタグを開いたり閉じたりすることは不可能であることがわかりましたが、目標を達成するための別の解決策があると確信しています...私はそれを見つけるのにあまり経験がありません。誰かが私を正しい方向に向けることができますか?事前にどうもありがとうございました!