[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: Recognizing new line character in XSL

Subject: Re: Recognizing new line character in XSL
From: Hermann Stamm-Wilbrandt <STAMMW@xxxxxxxxxx>
Date: Tue, 20 Jul 2010 14:50:43 +0200
Re:  Recognizing new line character in XSL
> <xsl:apply-template match="text()">
> <xsl:for-each select="tokenize(., '\n')">
> <p><xsl:value-of select="."/></p>
> </
> </
>
> Oh, I see you're using XSLT 1.0. That's tedious - in that case you need
> ...

Or use below slight modification in case the XSLT 1.0 processor supports
EXSLT (http://exslt.org/str/index.html):

<xsl:apply-template match="text()">
<xsl:for-each select="str:tokenize(., '\n')">
<p><xsl:value-of select="."/></p>
</
</


Mit besten Gruessen / Best wishes,

Hermann Stamm-Wilbrandt
Developer, XML Compiler, L3
WebSphere DataPower SOA Appliances
----------------------------------------------------------------------
IBM Deutschland Research & Development GmbH
Vorsitzender des Aufsichtsrats: Martin Jetter
Geschaeftsfuehrung: Dirk Wittkopp
Sitz der Gesellschaft: Boeblingen
Registergericht: Amtsgericht Stuttgart, HRB 243294



From:       Michael Kay <mike@xxxxxxxxxxxx>
To:         xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Date:       07/20/2010 01:33 PM
Subject:    Re:  Recognizing new line character in XSL



Assuming that you apply-templates to text nodes, and that you are
generating HTML, and that you are using XSLT 2.0, you can do

<xsl:apply-template match="text()">
<xsl:for-each select="tokenize(., '\n')">
<p><xsl:value-of select="."/></p>
</
</

Oh, I see you're using XSLT 1.0. That's tedious - in that case you need
a recursive named template that uses substring-before to process the
text before the first newline, and then calls itself passing
substring-after(., '& #xa;') to process the text after the first newline.

Michael Kay
Saxonica

On 20/07/2010 12:13, Siddhi Thakkar wrote:
> Hi Experts,
> Could you please guide me if there is any way in XSL to recognize new
line character and display each line as a new paragraph? I am not sure of
the Unicode entity of new line char, if we really need it we can assume it
to be&#xa;
> I am using JDOM as processor and xsl version 1.0.
>
> Thanks much in advance for help.
> Siddhi

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.