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

Re: Patterns in lieu of mutable variables or string t

Subject: Re: Patterns in lieu of mutable variables or string translation
From: Michael Kay <mike@xxxxxxxxxxxx>
Date: Fri, 02 Sep 2011 08:41:19 +0100
Re:  Patterns in lieu of mutable variables or string  t
On 01/09/2011 19:39, Hank Ratzesberger wrote:
Hello,

A table column has various values in it that need to be translated
into values that match the schema correctly.  Some values could
be wrong only by capitalization, others simply changed -- there's
no particular patter, but set of values is rather few in number.

Is there a good pattern for this? The only one that comes to
mind is cascading variable declarations where each test tried:

<xsl:variable name="start" select="/some/xpath/text()"/>
<xsl:variable name="t1" select="if ($start eq 'foo') then 'bar' else ''"/>
<xsl:variable name="t2" select="if (matches($start,'^FO.*')) then 'BAR' else $start"/>
<xsl:variable name="all" select="( $t1, $t2 )"/>
<xsl:variable name="finish" select="$all[not(empty(.))"/>

What's wrong with using template rules?


<xsl:template match="/some/xpath/text()[. eq 'foo'">bar</xsl:template>
<xsl:template match="/some/xpath/text()[matches(.,'^FO.*')">BAR</xsl:template>


You can use the priority attribute to control which takes precedence.

Michael Kay
Saxonica



(I don't know that the last line works at all...)

Or should this be done in code, that being the idea of immutable vars
(except this is in a rather large block to repeat)?

<if test="$start eq 'foo'">
<value-of select="bar'>
</if>

Cheers,
Hank

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.