gpt4 book ai didi

xml - XSLT - 在输出中用转义文本替换撇号

转载 作者:数据小太阳 更新时间:2023-10-29 02:16:58 26 4
gpt4 key购买 nike

我正在编写一个 XSLT 模板,需要为 xml 站点地图输出一个有效的 xml 文件。

<url>
<loc>
<xsl:value-of select="umbraco.library:NiceUrl($node/@id)"/>
</loc>
<lastmod>
<xsl:value-of select="concat($node/@updateDate,'+00:00')"/>
</lastmod>
</url>

不幸的是,输出的 Url 包含一个撇号 -/what's-new.aspx

我需要将 ' 转义为 '; 以获取 google Sitemap。不幸的是,我尝试过的每一次尝试都将字符串 ''' 视为无效的 ''' - 令人沮丧。 XSLT 有时会让我抓狂。

对技术有什么想法吗? (假设我可以找到解决 XSLT 1.0 模板和函数的方法)

最佳答案

所以您的输入中有 ',但您的输出中需要字符串  

在您的 XSL 文件中,使用 this find/replace implementation&apos; 替换为 &apos; (除非您使用的是 XSLT 2.0):

<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>

这样调用它:

<loc>
<xsl:call-template name="string-replace-all">
<xsl:with-param name="text" select="umbraco.library:NiceUrl($node/@id)"/>
<xsl:with-param name="replace" select="&apos;"/>
<xsl:with-param name="by" select="&amp;apos;"/>
</xsl:call-template>
</loc>

问题是 ' 被 XSL 解释为 '&apos; 将被解释为 '

关于xml - XSLT - 在输出中用转义文本替换撇号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1103205/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com