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

Re: Whitespace question

Subject: Re: Whitespace question
From: "Christopher R. Maden" <crism@xxxxxxxxx>
Date: Mon, 17 Sep 2001 23:54:51 -0700
xsl maintain whitespace
At 23:24 17-09-2001, Ragulf Pickaxe wrote:
Using MSXML 3.0, I have following structure:

<code1>bla bla</code1> <code1>more bla bla</code1>

[...]


Dimitre Novachev wrote something about specifying xml:space="preserve" on an element - how do you do that? and would that serve the job in this case? If not, is there another way to solve the problem (and how)?

To keep that whitespace node, we really need to know what the parent is. The easiest approach is to maintain all whitespace nodes within the parent, if that works. For example, given


<code>
<code1>bla bla</code1> <code1>more bla bla</code1>
</code>

Then you could set xml:space:

<code xml:space="preserve">
<code1>bla bla</code1> <code1>more bla bla</code1>
</code>

and MSXML would give you a string value of <code> of "
bla bla more bla bla
" (note two carriage returns in there, too). But if you need to strip all whitespace except the ones that fall between <code1>s, then your more unwieldy hack is the right direction. (What you need to do is insert the space unless there's a text node already there, which means that there was something other than just space.)


You could also do this with XSLT, without modifying the source XML:

<xsl:preserve-space elements="code"/>

-Chris
--
Christopher R. Maden, Principal Consultant, HMM Consulting Int'l, Inc.
DTDs/schemas - conversion - ebooks - publishing - Web - B2B - training
<URL: http://www.hmmci.com/ > <URL: http://crism.maden.org/consulting/ >
PGP Fingerprint: BBA6 4085 DED0 E176 D6D4  5DFC AC52 F825 AFEC 58DA


XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list



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.