Wrox Programmer Forums
Go Back   Wrox Programmer Forums > XML > XSLT
|
XSLT General questions and answers about XSLT. For issues strictly specific to the book XSLT 1.1 Programmers Reference, please post to that forum instead.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the XSLT section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old April 27th, 2007, 06:46 AM
Authorized User
 
Join Date: Apr 2007
Posts: 15
Thanks: 0
Thanked 0 Times in 0 Posts
Default Transform multilined element value to one line

I have an element:

Code:
<query>SELECT 
A.NAME,A.CHR,B.WDS,C.DES,B.ROM,B.BED,A.PAT 
FROM T1 A,T2 B,T3 C 
WHERE A.PAT=B.PAT AND B.DEP=C.DEP AND A.TYP='S' AND A.DISD='31/12/2008' AND 
B.DATT='31/12/2009' ORDER BY A.NAME</query>
which spans multiple lines but I need it to be one line like:

Code:
<query>SELECT  A.NAME,A.CHR,B.WDS,C.DES,B.ROM,B.BED,A.PAT  FROM T1 A,T2 B,T3 C WHERE A.PAT=B.PAT AND B.DEP=C.DEP AND A.TYP='S' AND A.DISD='31/12/2008' AND B.DATT='31/12/2009' ORDER BY A.NAME</query>
Is there an xsl function for that?

 
Old April 27th, 2007, 06:53 AM
mhkay's Avatar
Wrox Author
 
Join Date: Apr 2004
Posts: 4,962
Thanks: 0
Thanked 292 Times in 287 Posts
Default

Use normalize-space()

Michael Kay
http://www.saxonica.com/
Author, XSLT Programmer's Reference and XPath 2.0 Programmer's Reference
 
Old April 27th, 2007, 08:32 AM
Authorized User
 
Join Date: Apr 2007
Posts: 15
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Thank you very much for your prompt and helpful reply!






Similar Threads
Thread Thread Starter Forum Replies Last Post
Referencing the line before in a transform lemon XSLT 2 September 13th, 2007 06:02 AM
xsl:element not on its own line in output EstherMStrom XSLT 3 February 26th, 2005 06:08 AM
MultiLined TextBox echovue Access 1 January 7th, 2005 04:43 PM
transform element contents advisor XSLT 1 September 16th, 2003 12:12 AM
transform element contents advisor XSLT 0 September 15th, 2003 12:03 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.