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 November 25th, 2005, 04:57 AM
Authorized User
 
Join Date: Oct 2005
Posts: 11
Thanks: 0
Thanked 0 Times in 0 Posts
Default Problem with Newline character

Hi
     I am using saxon to convert an xml file to a text output. To introduce a new line, I use the following code in the XSL:

<xsl:text>
</xsl:text>

But when I open the file using notepad, it shows the newline character as a small box like character. I even tried using <xsl:text>#10;</xsl:text>. But this also gives the same result....

Can anybody help....

 
Old November 25th, 2005, 07:05 AM
Authorized User
 
Join Date: Apr 2005
Posts: 23
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Try this one for test

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output method="text" version="1.0" encoding="UTF-8" indent="yes"/>
    <xsl:template match="/">
            india<xsl:text>
            </xsl:text>japan
            korea#xa;america
            <xsl:apply-templates/>
    </xsl:template>
</xsl:stylesheet>


 
Old November 25th, 2005, 07:34 AM
Authorized User
 
Join Date: Oct 2005
Posts: 11
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Hi
   Thanks for the reply. I have found a solution and it works fine...

 
Old November 25th, 2005, 07:20 PM
mhkay's Avatar
Wrox Author
 
Join Date: Apr 2004
Posts: 4,962
Thanks: 0
Thanked 292 Times in 287 Posts
Default

Notepad is I think one of very few remaining text editors that can't handle Unix line endings as well as Windows line endings. The XSLT 2.0 spec allows the serializer to change line endings to the preferred form for the target platform, but it doesn't require it: Saxon outputs exactly the characters that the stylesheet tells it to output, which in this case is a single newline character (i.e. a Unix line ending). If you want the Windows line ending you have to ask for it:

<xsl:text>#x0d;#x0a;</xsl:text>

Michael Kay
http://www.saxonica.com/
Author, XSLT Programmer's Reference and XPath 2.0 Programmer's Reference





Similar Threads
Thread Thread Starter Forum Replies Last Post
save .csv with newline character sansircar ASP.NET 1.0 and 1.1 Professional 1 November 19th, 2008 03:50 AM
character set problem BrendonMelville Java Basics 1 March 15th, 2007 12:16 PM
Newline character problem gsudipta1 XML 0 March 16th, 2005 03:54 AM
newline and tab characters problem anshul Beginning PHP 1 December 2nd, 2004 06:58 AM
HELP!!! the problem of handling special character kemin Classic ASP Databases 1 December 13th, 2003 01:31 PM





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