すべての子孫の子パーツの情報を取得する方法。
xml を csv に変換したい。兄弟が "," を使用する場合、私は一般的な解決策を試しています。兄弟がいない場合は、"|" を使用します。区切りとして。
たとえば、次のように入力した場合
<?xml version="1.0" encoding="ISO-8859-1"?>
<?xml-stylesheet type="text/xsl" href="Q2.xsl"?>
<data>
<ShoppingMalls>
<Shop>
<ShopNumber>1</ShopNumber>
<LineNumber>1</LineNumber>
<Address>
<Street> East </Street>
<PinCode>1 </PinCode>
</Address>
</Shop>
<Shop>
<ShopNumber>2</ShopNumber>
<LineNumber>2</LineNumber>
<Address>
<Street> West </Street>
<PinCode>1 </PinCode>
</Address>
</Shop>
</ShoppingMalls>
<Inventory>
<Line>
<LineNumber>line</LineNumber>
<Description>desc</Description>
<Matrix>quan</Matrix>
<Matrix>quan1</Matrix> <!-- added -->
<Date>date</Date>
</Line>
<Line>
<LineNumber>1</LineNumber>
<Description>Oak chairs</Description>
<Matrix>5</Matrix>
<Matrix>20</Matrix> <!-- added -->
<Matrix>16</Matrix> <!-- added -->
<Date>31 Dec 2004</Date>
</Line>
<Line>
<LineNumber>2</LineNumber>
<Description>Dining tables</Description>
<Matrix>
<Module1>
<Module11> 234</Module11>
<Module11> 333</Module11> <!-- could be nested till any level i.e. might have any number of descendants-->
</Module1>
<SubComp>300</SubComp>
<SubComp>500</SubComp>
<SubComp>800</SubComp>
</Matrix>
<Date>31 Dec 2004</Date>
</Line>
<Line>
<LineNumber>3</LineNumber>
<Description>Folding chairs</Description>
<Matrix>4</Matrix>
<Date>29 Dec 2004</Date>
</Line>
<Line>
<LineNumber>4</LineNumber>
<Description>Couch</Description>
<Matrix>1</Matrix>
<Date>31 Dec 2004</Date>
</Line>
</Inventory>
</data>
次に、以下のように出力したい...これはcsvファイルにインポートされます
ShoppingMalls Information
1|1|East,1
2|2|West,1
Line Information
line|desc|quan,quan1|date
1|Oak chairs|5,20,16|31 Dec 2004
2|Dining tables| 234,333|300,500,800|31 Dec 2004
3|Folding chairs|4|29 Dec 2004
4|Couch|1|31 Dec 2004
ノードを任意の深さまでナビゲートしたい。同じ名前の属性がある場合は、「,」を使用して連結したい (兄弟または複数値の属性) 他のノードの場合、区切り文字は「|」にする必要があります。行ノード間の区切りとしての属性と改行の間。以前のソリューションを使用しましたノードに複数の値がある場合、これらを単一の文字列に連結します。xslt 1.0 を使用したいのですが、あなたの助けを求めるソリューションです。
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text" indent="yes" encoding="ISO-8859-1" omit-xml-declaration="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template name="Newline"><xsl:text>
</xsl:text></xsl:template>
<xsl:template match="/data/Inventory">
<xsl:text>ShoppingMalls Information</xsl:text>
<xsl:call-template name="Newline" />
<xsl:apply-templates select="Line"/>
</xsl:template>
<xsl:template match="data/ShoppingMalls">
<xsl:text>ShoppingMalls Information</xsl:text>
<xsl:call-template name="Newline" />
<xsl:apply-templates select="Shop"/>
</xsl:template>
<!-- the same solution for Inventory/Line can be used for ShoppingMalls/Shop
-->
<xsl:template match="Line">
<xsl:for-each select="*"> <!-- somehow I belive the ndes can be identfied over here -->
<!--
I THINK THIS BLOCK WILL HAVE SOLUTION
BEGIN
<xsl:if test="count(./child::*) > 1">
<xsl:when test="name(./child/following-sibling::*)=name(./child::*)" >
<xsl:text>,</xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:if test="position() != last()">
<xsl:text>|</xsl:text>
</xsl:if>
</xsl:otherwise>
</xsl:if>
END
-->
<xsl:choose>
<!-- below blocks gives a simple way to identify siblings, but it not extensible -->
<xsl:when test="name(./following-sibling::*)=name(.)" >
<xsl:text>,</xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:if test="position() != last()">
<xsl:value-of select="'|'"/>
</xsl:if>
</xsl:otherwise>
</xsl:choose>
</xsl:for-each>
<xsl:text>
</xsl:text>
</xsl:template>
</xsl:stylesheet>