当前位置 : 主页 > 网页制作 > xml >

如何使用XSLT从XML中删除换行符?

来源:互联网 收集:自由互联 发布时间:2021-06-13
我有这个XSLT: xsl:strip-space elements="*" /xsl:template match="math" img class="math" xsl:attribute name="src"http://latex.codecogs.com/gif.latex?xsl:value-of select="text()" //xsl:attribute /img/xsl:template 哪个适用于此XML(请注
我有这个XSLT:

<xsl:strip-space elements="*" />
<xsl:template match="math">
    <img class="math">
        <xsl:attribute name="src">http://latex.codecogs.com/gif.latex?<xsl:value-of
            select="text()" /></xsl:attribute>
    </img>
</xsl:template>

哪个适用于此XML(请注意换行符):

<math>\text{average} = \alpha \times \text{data} + (1-\alpha) \times
    \text{average}</math>

不幸的是,转换创建了这个:

<img
    class="math"
    src="http://latex.codecogs.com/gif.latex?\text{average} = \alpha \times \text{data} + (1-\alpha) \times&#10;&#9;&#9;&#9;&#9;&#9;\text{average}" />

注意空白字符文字.虽然它有效,但它非常混乱.我怎么能阻止这个?

使用 normalize-space()功能是不够的,因为它离开了中间空间!

这是一个简单而完整的解决方案:

<xsl:stylesheet version="1.0"
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 <xsl:output omit-xml-declaration="yes"/>
 <xsl:strip-space elements="*" />

 <xsl:template match="math">
    <img class="math">
        <xsl:attribute name="src">http://latex.codecogs.com/gif.latex?<xsl:value-of
            select="translate(.,' &#9;&#10;', '')" /></xsl:attribute>
    </img>
 </xsl:template>
</xsl:stylesheet>

在提供的XML文档上应用此转换时:

<math>\text{average} = \alpha \times \text{data} + (1-\alpha) \times
    \text{average}</math>

产生了想要的正确结果:

<img class="math" src="http://latex.codecogs.com/gif.latex?\text{average}=\alpha\times\text{data}+(1-\alpha)\times\text{average}" />

请注意:

>使用XPath 1.0 translate()函数去除所有不需要的字符.
>此处无需使用replace()功能 – 可能无法使用它,因为它仅在XPath 2.0中可用.

网友评论