編集:私は解決策を持っていますが、もっと良い方法があると確信しています。下記を参照してください。
ソースXML:
<?xml version="1.0"?>
<reservations>
<reservation>
<id>1</id>
<guestId>1111</guestId>
<!-- other fields -->
</reservation>
<reservation>
<id>2</id>
<guestId>2222,3333,4444</guestId>
<!-- other fields -->
</reservation>
</reservations>
期待される出力:
<?xml version="1.0" encoding="UTF-8"?>
<reservations>
<reservation>
<id>1</id>
<csvGuestString>1111</csvGuestString>
<guestId>1111</guestId>
<!-- other fields -->
</reservation>
<reservation>
<id>2</id>
<csvGuestString>2222,3333,4444</csvGuestString>
<guestId>2222</guestId>
<!-- other fields -->
</reservation>
<reservation>
<id>2</id>
<csvGuestString>2222,3333,4444</csvGuestString>
<guestId>3333</guestId>
<!-- other fields -->
</reservation>
<reservation>
<id>2</id>
<csvGuestString>2222,3333,4444</csvGuestString>
<guestId>4444</guestId>
<!-- other fields -->
</reservation>
</reservations>
ルール:
<reservation>
ゲストを持つ要素n
(のコンマ区切り値で定義<guestId>
)の場合、次のguestId値を使用するたびに、その要素をその子孫とともに何度も複製<reservation>
します。n
- 元の要素の値を保持し、新しい要素
<guestId>
に配置する必要があります。<csvGuestString>
- XSLT1.0で実行する必要があります。
- トークン化にEXSLTを使用するのは完全に合理的です。
私がこれまでに持っているもの(それは機能しますが、それが最も効率的な解決策であるかどうかの手がかりはありません):
<?xml version="1.0"?>
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:exsl="http://exslt.org/common"
exclude-result-prefixes="exsl"
version="1.0">
<xsl:output method="xml" omit-xml-declaration="no" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:variable name="vTokenName" select="'token'"/>
<xsl:variable name="vDoc" select="/"/>
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
<xsl:template match="guestId">
<csvGuestString>
<xsl:apply-templates />
</csvGuestString>
</xsl:template>
<xsl:template match="reservation">
<xsl:variable name="vGuestRtfPass1">
<xsl:call-template name="tokenize">
<xsl:with-param name="text" select="guestId"/>
<xsl:with-param name="delimiter" select="','"/>
</xsl:call-template>
</xsl:variable>
<xsl:apply-templates select="exsl:node-set($vGuestRtfPass1)/*" mode="pass2">
<xsl:with-param name="pPosition" select="position()"/>
</xsl:apply-templates>
</xsl:template>
<xsl:template match="token" mode="pass2">
<xsl:param name="pPosition" />
<reservation>
<xsl:apply-templates select="$vDoc/*/reservation[$pPosition]/*" />
<guestId>
<xsl:apply-templates />
</guestId>
</reservation>
</xsl:template>
<xsl:template name="tokenize">
<xsl:param name="text"/>
<xsl:param name="delimiter" select="' '"/>
<xsl:choose>
<xsl:when test="contains($text,$delimiter)">
<xsl:element name="{$vTokenName}">
<xsl:value-of select="substring-before($text,$delimiter)"/>
</xsl:element>
<xsl:call-template name="tokenize">
<xsl:with-param name="text" select="substring-after($text,$delimiter)"/>
<xsl:with-param name="delimiter" select="$delimiter"/>
</xsl:call-template>
</xsl:when>
<xsl:when test="$text">
<xsl:element name="{$vTokenName}">
<xsl:value-of select="$text"/>
</xsl:element>
</xsl:when>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>
いつものように、あなたの援助に感謝します。