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

Re: Working around immutable variables

Subject: Re: Working around immutable variables
From: "David Carlisle d.p.carlisle@xxxxxxxxx" <xsl-list-service@xxxxxxxxxxxxxxxxxxxxxx>
Date: Fri, 2 Mar 2018 22:25:59 -0000
Re:  Working around immutable variables
> My non-xsl mind wants to use a mutable variable:

You should worry, your mind has been corrupted by exposure to
unnatural imperative programming languages:-)

If you were describing the problem to a human, you would not start
with "initialize a variable $current_region"

The XSLT version far more closely follows your english description

> we would like to show the first region name only to avoid repetition.

<xsl:for-each-group select="row" group-by select="region">
<xsl:value-of select="current-grouping-key()"/>
<xsl:for-each select="current-group()">
  do something with all the rows with this <region>US</region> or whatever
</xsl:for-each>
</xsl:for-each-group>

assuming an input like

<row><region>US</region>...</row>
<row><region>US</region>...</row>
<row><region>Europe</region>...</row>

So not only do you not need mutable variables, you don't need a variable at all.

David

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.