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

RE: for i = 1 to 10, or while (is there an equivalent?

Subject: RE: for i = 1 to 10, or while (is there an equivalent?)
From: "Andrew Welch" <ajwelch@xxxxxxxxxxxxxxx>
Date: Wed, 10 Nov 2004 09:59:11 -0000
xslt for i
> I'm probably going about this the wrong way, but I have a C
> string in a variable that I want to escape the backslashes
> and double-quotes prior to output.  ie. foo\bar"xxx ->
> foo\\bar\"xxx I figured I could use the XPath contain and
> substring functions to do what I want, but I can't find a way
> to iterate until there are no more characters of interest.
> Can this be done in XSL/XPath?

In XSLT 1.0 you would have to use recursion as the translate() function
can only a single character with another single character.  In XSLT 2.0
you can use Xpath 2.0's replace() function which allows you to use
regex's.  For example to replace all occurances of " with \" you could
use:

  replace(.,'&quot;','\\&quot;')

which is a lot nicer than a long winded choose/when :)

cheers
andrew

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.