如何在xslt中为新行编写代码

发布于 2024-10-20 13:57:27 字数 204 浏览 1 评论 0原文

可能的重复:
在 XSLT 中生成新行

你好,有人可以帮助我如何编写代码吗?为了获得换行符......

Possible Duplicate:
Producing a new line in XSLT

hello can any one help me how to write code for getting newline ....

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

つ低調成傷 2024-10-27 13:57:27

兄弟,我已经尝试了一切......但是
只有换行符不适合我
我拥有这一切 –
普莱文 4 小时前

尝试:

<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="text()" name="wrapLines">
  <xsl:param name="pText" select="."/>
  <xsl:param name="pNumLines" select="10"/>

  <xsl:if test=
   "string-length($pText) and $pNumLines > 0">
   <xsl:variable name="vLine" select=
   "substring-before(concat($pText,'
'), '
')"/>
   <Line>
    <xsl:value-of select="$vLine"/>
   </Line>
   <xsl:call-template name="wrapLines">
    <xsl:with-param name="pNumLines" select="$pNumLines -1"/>
    <xsl:with-param name="pText" select=
      "substring-after($pText, '
')"/>
   </xsl:call-template>
  </xsl:if>
 </xsl:template>
</xsl:stylesheet>

当此转换应用于以下 XML 文档时

<t>
 line2
 line3
 line4
</t>

它正确地找到所有出现的 NL 字符,并正确地将文本拆分为单独的 元素

<Line/>
<Line> line2</Line>
<Line> line3</Line>
<Line> line4</Line>

bro i have tried every thing ....but
only newline was not getting for me
i have with this all –
praveen 4 hours ago

Try:

<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="text()" name="wrapLines">
  <xsl:param name="pText" select="."/>
  <xsl:param name="pNumLines" select="10"/>

  <xsl:if test=
   "string-length($pText) and $pNumLines > 0">
   <xsl:variable name="vLine" select=
   "substring-before(concat($pText,'
'), '
')"/>
   <Line>
    <xsl:value-of select="$vLine"/>
   </Line>
   <xsl:call-template name="wrapLines">
    <xsl:with-param name="pNumLines" select="$pNumLines -1"/>
    <xsl:with-param name="pText" select=
      "substring-after($pText, '
')"/>
   </xsl:call-template>
  </xsl:if>
 </xsl:template>
</xsl:stylesheet>

when this transformation is applied on the following XML document:

<t>
 line2
 line3
 line4
</t>

it correctly finds all occurencies of an NL character and correctly splits the text into separate <Line> elements:

<Line/>
<Line> line2</Line>
<Line> line3</Line>
<Line> line4</Line>
勿挽旧人 2024-10-27 13:57:27

您是否想输出新行或硬返回?这将在转换后的文件中输出一个新行。

<xsl:text>
</xsl:text>

Are you trying to output a new line or hard return? This will output a new line in the transformed file.

<xsl:text>
</xsl:text>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文