请问有人可以帮忙找到解决办法吗?
要求 - 使用 xslt 1.0
我有一个像
<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>