2

请问有人可以帮忙找到解决办法吗?

要求 - 使用 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>
4

1 回答 1

1

我会在w:p这里完全忽略现有元素。最终,您想要的是一个名为的根元素root,其中包含原始源w:p中每次相邻w:r元素运行的一个元素,无论这些w:r元素之前是否包含在w:p. 您可以使用我称为兄弟递归的技术来解决此问题- 从每个组中的第一个触发的模板开始,w:r然后让它递归到紧随其后的兄弟,直到您遇到一个不是另一个的兄弟w:r

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    version="1.0" xmlns:w="http://foo.com">

  <xsl:template match="/">
    <root>
      <xsl:apply-templates mode="group"
          select=".//w:r[not(preceding-sibling::*[1][self::w:r])]" />
    </root>
  </xsl:template>

  <xsl:template match="w:r" mode="group">
    <w:p>
      <xsl:apply-templates select="." /><!-- applies non-"group" templates -->
    </w:p>
  </xsl:template>

  <xsl:template match="w:r">
    <xsl:copy-of select="."/>
    <xsl:apply-templates select="following-sibling::*[1][self::w:r]" />
  </xsl:template>
</xsl:stylesheet>

神奇之处在于选择表达式。

.//w:r[not(preceding-sibling::*[1][self::w:r])]

选择w:r不立即跟随另一个元素的所有元素w:r(即每个连续运行中的第一个元素)。

following-sibling::*[1][self::w:r]

选择当前元素的紧随其后的兄弟元素,但前提是它是 a w:r。如果根本没有后续兄弟元素,或者有一个但不是w:r.

于 2013-10-04T13:42:40.357 回答