XSLT 替换属性值和文本节点中的文本
Posted
技术标签:
【中文标题】XSLT 替换属性值和文本节点中的文本【英文标题】:XSLT replacing text in attribute value and text nodes 【发布时间】:2015-03-04 12:35:09 【问题描述】:我有一个 XML 文档,我正在尝试转换并在某些值出现在文本节点或名为 message 的属性中时对某些值进行字符串替换。我的 xsl 文件在下面,但主要问题是当替换发生在 message 属性中时,它实际上替换了整个属性而不仅仅是该属性的值,所以
<mynode message="hello, replaceThisText"></mynode>
变成
<mynode>hello, withThisValue</mynode>
代替
<mynode message="hello, withThisValue"></mynode>
当文本出现在像这样的文本节点中时
<mynode>hello, replaceThisText</mynode>
然后它按预期工作。
我还没有完成大量的 XSLT 工作,所以我有点卡在这里。任何帮助,将不胜感激。谢谢。
<xsl:template match="text()|@message">
<xsl:call-template name="string-replace-all">
<xsl:with-param name="text"><xsl:value-of select="."/></xsl:with-param>
<xsl:with-param name="replace" select="'replaceThisText'"/>
<xsl:with-param name="by" select="'withThisValue'"/>
</xsl:call-template>
</xsl:template>
<!-- string-replace-all from http://geekswithblogs.net/Erik/archive/2008/04/01/120915.aspx -->
<xsl:template name="string-replace-all">
<xsl:param name="text" />
<xsl:param name="replace" />
<xsl:param name="by" />
<xsl:choose>
<xsl:when test="contains($text, $replace)">
<xsl:value-of select="substring-before($text,$replace)" />
<xsl:value-of select="$by" />
<xsl:call-template name="string-replace-all">
<xsl:with-param name="text"
select="substring-after($text,$replace)" />
<xsl:with-param name="replace" select="$replace" />
<xsl:with-param name="by" select="$by" />
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$text" />
</xsl:otherwise>
</xsl:choose>
</xsl:template>
【问题讨论】:
【参考方案1】:您的模板匹配一个属性,但它不输出一个。
请注意,属性的值不是节点。因此,您必须为文本节点和属性使用单独的模板:
<xsl:template match="text()">
<xsl:call-template name="string-replace-all">
<xsl:with-param name="text" select="."/>
<xsl:with-param name="replace" select="'replaceThisText'"/>
<xsl:with-param name="by" select="'withThisValue'"/>
</xsl:call-template>
</xsl:template>
<xsl:template match="@message">
<xsl:attribute name="message">
<xsl:call-template name="string-replace-all">
<xsl:with-param name="text" select="."/>
<xsl:with-param name="replace" select="'replaceThisText'"/>
<xsl:with-param name="by" select="'withThisValue'"/>
</xsl:call-template>
</xsl:attribute>
</xsl:template>
【讨论】:
以上是关于XSLT 替换属性值和文本节点中的文本的主要内容,如果未能解决你的问题,请参考以下文章
xslt将具有相同属性的相邻兄弟合并为一个,同时连接它们的文本