0

を br タグに置き換えて、xsl を使用して xml を変換する際に改行を表示しています。空白を   などのコードに置き換えたいと考えています。サンプル コードは次のとおりです。私が何をすべきか提案してください。

一方、xml ファイルは ------------ のようになります

<?xml version="1.0" encoding="iso-8859-1"?><?xml-stylesheet type="text/xsl"     
href="task.xsl"?><Nodes><sNode><Word><![CDATA[1
2.............3............4............5
 3]]></Word></sNode></Nodes>

空白は自動的に省略されるため、ここでは........空白を表します。

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
   <xsl:template match="/">
    <html>
      <body>
        <table>
           <xsl:for-each select="Nodes/sNode">
              <tr>
                 <td>
                    <xsl:call-template name="replace-string-with-element">
                       <xsl:with-param name="text" select="Word"/>
                       <xsl:with-param name="replace" select="'&#10;'"/>
                       <xsl:with-param name="with" select="'br'"/>
                    </xsl:call-template>
                 </td>
                </tr>
             </xsl:for-each>
          </table>
       </body>
    </html>
 </xsl:template>



<xsl:template name="replace-string-with-element">
  <xsl:param name="text"/>
  <xsl:param name="replace"/>
  <xsl:param name="with"/>
  <xsl:choose>
     <xsl:when test="contains($text,$replace)">
        <xsl:value-of select="substring-before($text,$replace)"/>
        <xsl:element name="{$with}"/>
        <xsl:call-template name="replace-string-with-element">
           <xsl:with-param name="text" select="substring-after($text,$replace)"/>
           <xsl:with-param name="replace" select="$replace"/>
           <xsl:with-param name="with" select="$with"/>

        </xsl:call-template>
     </xsl:when>
     <xsl:otherwise>
        <xsl:value-of select="$text"/>
       </xsl:otherwise>
     </xsl:choose>
   </xsl:template>
 </xsl:stylesheet>
4

1 に答える 1

0

xsl:character-map次のように使用できます。

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:fn="http://www.w3.org/2005/xpath-functions" exclude-result-prefixes="fn xs">

    <xsl:character-map name="replaceChars">
        <xsl:output-character character="&#10;" string="br"/>
    </xsl:character-map>

    <xsl:output method="xml" version="1.0" encoding="UTF-8" use-character-maps="replaceChars" indent="yes"/>

    <!-- Implement your templates -->   
</xsl:stylesheet>

xsl:character-mapすべての文字を外部 XSLTに保存して使用することもできます<xsl:import href="characterFile.xslt" />


これをスタイルシートに実装するには、次の XSLT を使用します。

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:character-map name="replaceChars">
        <xsl:output-character character="&#10;" string="br"/>
    </xsl:character-map>
    <xsl:output method="html"  use-character-maps="replaceChars"/>

   <xsl:template match="/">
    <html>
      <body>
        <table>
           <xsl:for-each select="Nodes/sNode">
              <tr>
                 <td>
                    <xsl:value-of select="Word" />
                 </td>
                </tr>
             </xsl:for-each>
          </table>
       </body>
    </html>
 </xsl:template>
于 2013-09-20T14:51:32.483 に答える