Re: [xsl] Can group-by treat its target it two ways?

Subject: Re: [xsl] Can group-by treat its target it two ways?
From: "Mark" <mark@xxxxxxxxxxxx>
Date: Sat, 5 Nov 2011 11:04:44 -0700
Hi Martin,
Although the expressions looks as though it should work, it does not produce the 'ch' file and does produce a lot of accented letter files that should have been combined. My peculiar:
<xsl:for-each-group select="Word" group-by="if (lower-case(substring(@word,1,2)) eq 'ch') then 'ch' else lower-case(substring(@word,1,1))">
actually does work.


Your suggestion would have been far simpler, though.
Thanks,
Mark
-----Original Message----- From: Martin Honnen
Sent: Saturday, November 05, 2011 10:48 AM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: Re: [xsl] Can group-by treat its target it two ways?


Mark wrote:

 How can I make
<xsl:for-each-group select="Word"
group-by="lower-case(substring(@word,1,1))"> consider 'ch' as a single
letter? (Right now, it is tacking all of the 'ch' words at the end of
the 'c' file because of the substring(@word, 1,1) filter.

What happens with <xsl:for-each-group select="Word" group-by="lower-case(substring(@word,1,1))" collation="http://saxon.sf.net/collation?lang=cs";> ?

--

Martin Honnen --- MVP Data Platform Development
http://msmvps.com/blogs/martin_honnen/

Current Thread