删除不需要的空间并使用XSLT返回

时间:2013-04-17 05:42:58

标签: xslt

我想删除Space并在元素之间返回仅针对特定子元素(即)的数学,如下面提到的XML。我试过了<xsl:strip-space elements="m:math"/>。但它消除了所有元素的空间。我需要在<style>元素之前的<b>元素和空格之后保留空格。

输入XML:

<?xml version="1.0"?>
<chapter xmlns="http://www.w3.org/1998/Math/MathML">
    <style>This is style</style> 
    <math display="block"> 
        <munder> 
            <mi mathvariant="normal">BASE</mi>
            <mi mathvariant="normal">under</mi> 
        </munder> 
        <mo>=</mo> 
        <munder> 
            <mrow> 
                <munder> 
                    <mi mathvariant="normal">BASE</mi> 
                    <mi mathvariant="normal">under</mi> 
                </munder> 
            </mrow> 
            <mphantom>
                <mi mathvariant="normal">under</mi>
            </mphantom> 
        </munder> 
    </math>
    <b>This is bold</b>
</chapter>

XSLT尝试过:

<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:m="http://www.w3.org/1998/Math/MathML" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  xmlns="http://www.w3.org/1998/Math/MathML" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:mml="http://www.w3.org/1998/Math/MathML">
    <xsl:output method="xml" encoding="UTF-8" indent="no"/>
    <xsl:strip-space elements="*"/>

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

必需输出:

<?xml version='1.0' encoding='UTF-8'?>
<chapter xmlns="http://www.w3.org/1998/Math/MathML"><style>This is style</style> <math display="block"><munder><mi mathvariant="normal">BASE</mi><mi mathvariant="normal">under</mi></munder><mo>=</mo><munder><mrow><munder><mi mathvariant="normal">BASE</mi><mi mathvariant="normal">under</mi></munder></mrow><mphantom><mi mathvariant="normal">under</mi></mphantom></munder></math> <b>This is bold</b></chapter>

2 个答案:

答案 0 :(得分:2)

编辑:虽然这个答案对这个问题没有效果,但我保留了它作为参考,因为我已经解释了linearize XML代码中每个模板的重要性。并将相关答案公布为新的回答..


你不需要带空间,这应该做..

<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output indent="no" omit-xml-declaration="yes"/>
    <xsl:template match="@*|node()">
        <xsl:copy>
            <xsl:apply-templates select="@*|node()"/>
        </xsl:copy>
    </xsl:template>
    <xsl:template match="text()">
        <xsl:value-of select="normalize-space()" />
    </xsl:template>
</xsl:stylesheet>

说明:

<xsl:output indent="no" omit-xml-declaration="yes"/>

缩进=&#39;否&#39;负责删除两个节点之间的额外空间。omit-xml-declaration从输出XML中删除xml声明。这在您的情况下是可选的..

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

按原样复制节点..除非没有缩进..

<xsl:template match="text()">
    <xsl:value-of select="normalize-space()" />
</xsl:template>

将不需要的空格字符转换为单空格字符..例如:

<node>

    there is lots of     space
</node>

输出将是这样的:

<node>there is lots of space</node>

答案 1 :(得分:1)

诀窍是在任何地方插入<xsl:text>&#xA0;</xsl:text> ..

这里我在复制节点&#xA0;下的每个元素之前插入此文本chapter(引入空间)。

<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output indent="no" omit-xml-declaration="no"/>
  <xsl:template match="@*|node()">
    <xsl:copy>
      <xsl:apply-templates select="@*|node()"/>
    </xsl:copy>
  </xsl:template>
  <xsl:template match="//*[parent::node()[name() = 'chapter']]">
    <xsl:text>&#xA0;</xsl:text>
    <xsl:copy>
      <xsl:apply-templates select="@*|node()"/>
    </xsl:copy>
  </xsl:template>
    <xsl:template match="text()">
        <xsl:value-of select="normalize-space()" />
    </xsl:template>
</xsl:stylesheet>

输出:

<?xml version="1.0" encoding="utf-8"?><chapter xmlns="http://www.w3.org/1998/Math/MathML"> <style>This is style</style> <math display="block"><munder><mi mathvariant="normal">BASE</mi><mi mathvariant="normal">under</mi></munder><mo>=</mo><munder><mrow><munder><mi mathvariant="normal">BASE</mi><mi mathvariant="normal">under</mi></munder></mrow><mphantom><mi mathvariant="normal">under</mi></mphantom></munder></math> <b>This is bold</b></chapter>

您可以修改条件以适应您想要的额外空间..