1

 XSLT 1.0 を使用して、エンティティを通常のスペース (キーボード スペース)に変換する必要があります。しかし 、スペースではなくエンティティを取得しています。

サンプル XML:

<chapter xmlns="http://www.w3.org/1998/Math/MathML">
<math display='block'>
 <mrow>
  <mtext>x&#x00A0;y&#x00A0;+&#x00A0;y&#x00A0;x</mtext>
 </mrow>
</math>
</chapter>

XSLT 1.0 が試した:

<?xml version='1.0'?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="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:template match="mtext">
<xsl:for-each select="contains(.,'&#x00A0;')">
<xsl:text disable-output-escaping="yes"> </xsl:text>
</xsl:for-each>
</xsl:template>

</xsl:stylesheet>

必要な出力:

<?xml version='1.0' encoding='UTF-8' ?>
<chapter xmlns="http://www.w3.org/1998/Math/MathML"><math display="block"><mrow><mtext>x y + y x</mtext></mrow></math></chapter>

出力:

<?xml version='1.0' encoding='UTF-8' ?>
<chapter xmlns="http://www.w3.org/1998/Math/MathML"><math display="block"><mrow><mtext>x&#160;y&#160;+&#160;y&#160;x</mtext></mrow></math></chapter>
4

2 に答える 2

4

はるかに簡単

<xsl:template match="text()">
  <xsl:value-of select="translate(., '&#xA0;', ' ')"/>
</xsl:template>

これが完全な変換です。

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

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

 <xsl:template match="text()">
     <xsl:value-of select="translate(., '&#xA0;', ' ')"/>
 </xsl:template>
</xsl:stylesheet>

この変換が提供されたXMLドキュメントに適用される場合

<chapter xmlns="http://www.w3.org/1998/Math/MathML">
<math display='block'>
 <mrow>
  <mtext>x&#x00A0;y&#x00A0;+&#x00A0;y&#x00A0;x</mtext>
 </mrow>
</math>
</chapter>

必要な正しい結果が生成されます。

<chapter xmlns="http://www.w3.org/1998/Math/MathML">
   <math display="block">
      <mrow>
         <mtext>x y + y x</mtext>
      </mrow>
   </math>
</chapter>

覚えておいてください

単一の文字を別の文字に置き換える(または削除する)ための最良の方法は、標準のXPath関数を使用することtranslate()です。

于 2013-01-25T14:06:38.170 に答える
1
<?xml version='1.0'?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="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:template match="mtext">
    <xsl:call-template name="replace-string">
      <xsl:with-param name="text" select="."/>
      <xsl:with-param name="from">&#x00A0;</xsl:with-param>
      <xsl:with-param name="to" select="' '"/>
    </xsl:call-template>
  </xsl:template>

  <xsl:template name="replace-string">
    <xsl:param name="text"/>
    <xsl:param name="from"/>
    <xsl:param name="to"/>
    <xsl:choose>
      <xsl:when test="contains($text, $from)">
        <xsl:variable name="before" select="substring-before($text, $from)"/>
        <xsl:variable name="after" select="substring-after($text, $from)"/>
        <xsl:variable name="prefix" select="concat($before, $to)"/>
        <xsl:copy-of select="$before"/>
          <xsl:value-of select="$to" disable-output-escaping="yes"/>
        <xsl:call-template name="replace-string">
          <xsl:with-param name="text" select="$after"/>
          <xsl:with-param name="from" select="$from"/>
          <xsl:with-param name="to" select="$to"/>
        </xsl:call-template>
      </xsl:when>
      <xsl:otherwise>
        <xsl:copy-of select="$text"/>
      </xsl:otherwise>
    </xsl:choose>
  </xsl:template>
</xsl:stylesheet>
于 2013-01-25T10:04:46.410 に答える