XSLT 1.0计算以下兄弟姐妹

时间:2015-02-06 11:41:40

标签: xml xslt xpath xslt-1.0

我有一个像这样的简单xml

  <root>
          <story>
            <strongp>
                <color>Attention</color>
                Text of the single strongp color.
            </strongp>
            <p>Text</p>
            <strongp>
                <color>Attention</color>
                Text of strongp color.
            </strongp>
            <strongp>
                Text of interest1
                <a id="1234-3457">here</a>.
            </strongp>
            <p>sometext</p>
            <p>sometext</p>
            <el>sometext</el>
            <h5>Header H5</h5>
            <strongp>
                <color>Attention</color>
                Text of strongp color.
            </strongp>
            <strongp>
                Text of interest 
                <a id="8909-3490">here</a>
            </strongp>
            <strongp>
                Text of interest 
                <a id="8909-0081">here</a>
            </strongp>
            <strongp>
                Text of interest 
                <a id="8967-001">here</a>
            </strongp>
            <p>Text</p>

            <inline />
         </story>
  </root>

需要将strongp[color]转换为remarkheader,将以下兄弟转换为remarktext并将其全部转换为<remark>

单个<strongp>颜色所需的输出:

<remark>
    <remarkheader>Attention</remarkheader>
    <remarktext>Text of the single  strongp color.</remarktext>
</remark>

strongp with color后面跟着1个兄弟strongp的输出是:

<remark>
    <remarkheader>Attention</remarkheader>
    <remarktext>Text of strongp color.<br/>Text of interest1
                <a id="1234-3457">here</a>.</remarktext>
</remark>

最后输出strongp color后跟多个strongp

<remark>
    <remarkheader>Attention</remarkheader>
    <remarktext>
        Text of strongp color.
        <br/>
        Text of interest1
        <a id="1234-3457">here</a>.
    <br/>
        Text of interest
        <a id="8909-3490">here</a>.
    <br/>
        Text of interest
        <a id="8909-0081">here</a>.
    <br/>
        Text of interest
        <a id="8967-001">here</a>.
    </remarktext>
</remark>

好吧,应用此模板

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"  version="1.0">
    <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes" />
    <xsl:template match="node()|@*" name="identity" >
        <xsl:copy>
            <xsl:apply-templates select="node()|@*"/>
        </xsl:copy>
    </xsl:template>

    <xsl:template match="strongp[color]">
        <remark>
            <remarkheader>
                <xsl:value-of select="./color"/>
            </remarkheader>
            <remarktext>
                <xsl:value-of select="substring-after(., color)"/>
                <br/>
                <xsl:for-each select="following-sibling::strongp[count(preceding-sibling::strongp[color][1] | current())=1]">
                    <xsl:apply-templates select="./node()"  />
                    <xsl:choose>
                        <xsl:when test="position() !=last()">
                            <br/>
                        </xsl:when>
                    </xsl:choose>
                </xsl:for-each>
            </remarktext>
        </remark>
    </xsl:template>

</xsl:stylesheet>

但它似乎没有用。它添加了来自第一个兄弟strongp[color]的文本。我真的不明白以下兄弟如何计算。

你可以在这看一下 http://www.utilities-online.info/xsltransformation/?save=c1b3e857-b6d7-4562-a440-9d3e357cb12d-xsltransformation

1 个答案:

答案 0 :(得分:1)

这是我的尝试,递归处理following-sibling::strongp

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"  version="1.0">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes" />
<xsl:strip-space elements="*"/>

<xsl:template match="node()|@*">
    <xsl:copy>
        <xsl:apply-templates select="node()|@*"/>
    </xsl:copy>
</xsl:template>

<xsl:template match="strongp[color]">
    <remark>
        <remarkheader>
            <xsl:value-of select="color"/>
        </remarkheader>
        <remarktext>
            <xsl:apply-templates select="text()"/>
            <xsl:apply-templates select="following-sibling::*[1][self::strongp]" mode="following"/>
        </remarktext>
    </remark>
</xsl:template>

<xsl:template match="strongp" mode="following">
    <br/>
    <xsl:apply-templates select="node()"/>
    <xsl:apply-templates select="following-sibling::*[1][self::strongp]" mode="following"/>
</xsl:template>

<xsl:template match="strongp"/>

</xsl:stylesheet>