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

Re: conditional replacement

Subject: Re: conditional replacement
From: Mukul Gandhi <gandhi.mukul@xxxxxxxxx>
Date: Tue, 13 Jan 2009 21:51:27 +0530
Re:  conditional replacement
On Tue, Jan 13, 2009 at 5:52 PM, Ganesh Babu N <nbabuganesh@xxxxxxxxx> wrote:
> I have tried with the following expressions but I am not getting the result.
>
> <xsl:if test="document('ini.xml')//init/space = 1">
>        <xsl:variable name="space" select=" "/>
> </xsl:if>

You cannot use the above variable any further in the stylesheet. As
the scope of the variable is only within the enclosing xsl:if element.

Since you are using XSLT 2.0, I suggest you can use something like:

<xsl:variable name="space" select="if (document('ini.xml')//init/space
= 1) then ' ' else ''"/>

> <xsl:choose>
> <xsl:when test="document('ini.xml')//init/remove = 1">
>        <xsl:variable name="pat" select="string('.')"/>
> </xsl:when>
> <xsl:otherwise>
>        <xsl:variable name="pat" select="\.[^$]"/>
> </xsl:otherwise>
> <xsl:choose>

This variable declaration will not work either, for the same reason I
wrote above.

I suggest, please use:

<xsl:variable name="pat" select="if (document('ini.xml')//init/remove
= 1) then string('.') else \.[^$]"/>


PS: I haven't checked the correctness of regular expressions.


-- 
Regards,
Mukul Gandhi

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.