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