2

誰でも解決策を見つけるのを手伝ってもらえますか?

要件 - xslt 1.0 を使用

私は次のようなxml構造を持っています

<w:p xmlns:w="http://foo.com">
    <w:r>run1</w:r>
    <w:r>run2</w:r>
    <w:r>runn3</w:r>
    <w:p>
        <w:r>para1</w:r>
    </w:p>
    <w:p>
        <w:r>para2</w:r>
    </w:p>
    <w:r>run4 - after para2</w:r>
    <w:r>run5- after para2</w:r>
   <w:p>
       <w:r>last para</w:r>
   </w:p>
</w:p>

xslt 1.0 を使用して、次のような出力が必要です。

<root>
 <w:p>
        <w:r>run1</w:r>
        <w:r>run2</w:r>
        <w:r>runn3</w:r>
        </w:p>
    <w:p>
        <w:r>para1</w:r>
    </w:p>
    <w:p>
        <w:r>para2</w:r>
    </w:p>
    <w:p>
        <w:r>run4 - after para2</w:r>
        <w:r>run5- after para2</w:r>
     </w:p>
    <w:p>
        <w:r>last para</w:r>
    </w:p>
</root>

基本的には順番にグループ化したい

私が試したXSLt:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    version="1.0" xmlns:w="http://foo.com" xmlns:msxsl="urn:schemas-microsoft-com:xslt">

   <xsl:template match="/">   
       <root>
        <!--<xsl:for-each select="w:p/*">
            <xsl:choose>
                <xsl:when test="name()='w:r'">
                    <w:p>
                        <xsl:copy-of select="."/>
                    </w:p>
                </xsl:when>
                <xsl:otherwise>
                    <xsl:copy-of select="."/>
                </xsl:otherwise>
            </xsl:choose>
        </xsl:for-each>-->
           <xsl:apply-templates select="w:r |w:p"/>
       </root>
   </xsl:template> 

    <xsl:template match="w:r">
        <w:p>
             <xsl:copy-of select="."/>
        </w:p>
    </xsl:template>

    <xsl:template match="w:p/w:p">
        <xsl:copy-of select="."/>
    </xsl:template>
</xsl:stylesheet>

私が得ている出力:

<?xml version="1.0" encoding="UTF-16"?>
<root xmlns:w="http://foo.com" xmlns:msxsl="urn:schemas-microsoft-com:xslt">
    <w:p>
        <w:r>run1</w:r>
    </w:p>
    <w:p>
        <w:r>run2</w:r>
    </w:p>
    <w:p>
        <w:r>runn3</w:r>
    </w:p>
    <w:p>
        <w:r>para1</w:r>
    </w:p>
    <w:p>
        <w:r>para2</w:r>
    </w:p>
    <w:p>
        <w:r>run4 - after para2</w:r>
    </w:p>
    <w:p>
        <w:r>run5- after para2</w:r>
    </w:p>
    <w:p>
        <w:r>last para</w:r>
    </w:p>
</root>
4

1 に答える 1