xsl-list
[Top] [All Lists]

Re: [xsl] Working around immutable variables

2018-03-02 16:26:04
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
--~----------------------------------------------------------------
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
EasyUnsubscribe: http://lists.mulberrytech.com/unsub/xsl-list/1167547
or by email: xsl-list-unsub(_at_)lists(_dot_)mulberrytech(_dot_)com
--~--

<Prev in Thread] Current Thread [Next in Thread>