可能重複:
Interpreting newlines with XSLT xsl:text?如何使用XSLT將NEWLINE轉換爲<BR/>?
如何NEWLINE轉換成<BR/>
與XSLT?
我
<text>
some text with
new lines
</text>
我想有
<p> some text with <br /> new lines </p>
可能重複:
Interpreting newlines with XSLT xsl:text?如何使用XSLT將NEWLINE轉換爲<BR/>?
如何NEWLINE轉換成<BR/>
與XSLT?
我
<text>
some text with
new lines
</text>
我想有
<p> some text with <br /> new lines </p>
這種轉變:
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:template match="t">
<p>
<xsl:apply-templates/>
</p>
</xsl:template>
<xsl:template match="text()" name="insertBreaks">
<xsl:param name="pText" select="."/>
<xsl:choose>
<xsl:when test="not(contains($pText, '
'))">
<xsl:copy-of select="$pText"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="substring-before($pText, '
')"/>
<br />
<xsl:call-template name="insertBreaks">
<xsl:with-param name="pText" select=
"substring-after($pText, '
')"/>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>
當這個XML文檔施加:
<t>Line1
Line2
Line3
</t>
產生想要的,正確的結果:
<p>Line1<br />Line2<br />Line3<br /></p>
它不工作。我使用jquery.xslt.js來進行翻譯。你認爲這很重要嗎? – liysd 2010-07-22 15:13:40
@liysd:我糾正了我的答案。現在就試試。 – 2010-07-22 15:58:02
@liysd:現在,它工作。 @Dimitre:+1也因爲我喜歡這種遞歸模式。 – 2010-07-22 23:20:12
入住這http://stackoverflow.com/questions/185101/interpreting-newlines-with-xslt-xsltext – PSK 2010-07-22 14:15:19