XSLT - 在混合内容

时间:2015-12-11 13:44:36

标签: xslt whitespace

我无法弄清楚如何在保持内容顺序的同时在混合内容节点中添加空格。

我的XML看起来像这样:

<paragraph>
    <p>
        <keyword>First keyword</keyword>First text.
        <author>First author</author>
        <keyword>Second keyword</keyword>Second text.
        <author>Second author</author>
        <keyword>Third keyword</keyword>Third text.
        <author>Third author</author>
    </p>
</paragraph>

我的模板:

<xsl:template match="p" mode="readContentW">
    <xsl:value-of select="."/><xsl:text> </xsl:text>
</xsl:template>

我的输出现在:

<phrase>First keywordFirst text. First authorSecond keywordSecond Text. Second authorThird keywordThird text. Third author</phrase> 

我想要的输出:

<phrase>First keyword First text. First author Second keyword Second Text. Second author Third keyword Third text. Third author</phrase>

甚至更好的是这样的事情:

<phrase>
    <b>First keyword</b> First text. <i>First author</i>
    <b>Second keyword</b> Second Text. <i>Second author</i>
    <b>Third keyword</b> Third text. <i>Third author</i>
</phrase>

但我需要在关键字之后和作者之前使用空格。

我尝试在<xsl:text> </xsl:text>节点后通过<phrase>手动添加空格,但我仍然不知道如何在保持内容顺序的情况下执行此操作。
XML可以有任意数量的短语/文本/作者组合,所以通过手动添加空白,我必须再次将拼图放在一起,但是如何没有任何循环?

1 个答案:

答案 0 :(得分:0)

如果在创建文本输出时转换元素并添加空格,则插入空格很容易:

<xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">

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

    <xsl:template match="p">
        <phrase>
            <xsl:apply-templates/>
        </phrase>
    </xsl:template>

    <xsl:template match="keyword">
        <b>
            <xsl:apply-templates/>
        </b>
    </xsl:template>

    <xsl:template match="author">
        <i>
            <xsl:apply-templates/>
        </i>
    </xsl:template>

    <xsl:template match="p/text()[preceding-sibling::node()[1][self::keyword]]">
        <xsl:value-of select="concat(' ', .)"/>
    </xsl:template>
</xsl:transform>

您需要更多地解释为什么或何时将First text.末尾的换行符转换为空格以允许我们将其作为模板实现。