Re: [xsl] Patterns in lieu of mutable variables or string translation

Subject: Re: [xsl] Patterns in lieu of mutable variables or string translation
From: Michael Kay <mike@xxxxxxxxxxxx>
Date: Fri, 02 Sep 2011 08:41:19 +0100
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