转换  进入使用XSL 1.0

时间:2010-06-23 11:30:51

标签: xslt whitespace

给出XML:

<data>
<field>Value 1&#xD;Value 2&#xD;Value 3&#xD;</field>
</data>

我希望能够创建一些HTML来显示值并将&#xD;转换为<br/>

<html>
<head/>
<body>
<div>Field Values</div>
<div>Value 1<br/>Value 2<br/>Value 3<br/></div>
</body>
</html>

但是我想不出用XSL 1.0版做到这一点的方法?

我试过

<xsl:value-of select="field" disable-output-escaping="yes"/>

然而,文字全部出现在1行。

有任何想法/建议吗?

由于

戴夫

2 个答案:

答案 0 :(得分:2)

您可以使用递归模板进行替换:

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output method="xml" indent="yes"/>

    <xsl:template match="/">
      <data>
        <xsl:call-template name="replaceCharsInString">
          <xsl:with-param name="stringIn" select="data/field" />
        </xsl:call-template>
      </data>
    </xsl:template>

  <xsl:template name="replaceCharsInString">
    <xsl:param name="stringIn"/>
    <xsl:choose>
      <xsl:when test="contains($stringIn,'&#xD;')">
        <xsl:value-of select="substring-before($stringIn,'&#xD;')"/>
        <br />
        <xsl:call-template name="replaceCharsInString">
          <xsl:with-param name="stringIn" 
                          select="substring-after($stringIn,'&#xD;')"/>
        </xsl:call-template>
      </xsl:when>
      <xsl:otherwise>
        <xsl:value-of select="$stringIn"/>
      </xsl:otherwise>
    </xsl:choose>
  </xsl:template>
</xsl:stylesheet>

答案 1 :(得分:1)

以下是如何将&#xD;替换为<br/>

<xsl:template match="data">
  <xsl:call-template name="add-br">
    <xsl:with-param name="text" select="field" />
  </xsl:call-template>
</xsl:template>

<xsl:template name="add-br">
  <xsl:param name="text" select="."/>
  <xsl:choose>
    <xsl:when test="contains($text, '&#xD;')">
      <xsl:value-of select="substring-before($text, '&#xD;')"/>
      <br/>
      <xsl:call-template name="add-br">
        <xsl:with-param name="text" select="substring-after($text,'&#xD;')"/>
      </xsl:call-template>
    </xsl:when>
    <xsl:otherwise>
  <xsl:value-of select="$text"/>
    </xsl:otherwise>
  </xsl:choose>
</xsl:template>