xsl-list
[Top] [All Lists]

Re: [xsl] Filtering nodes based on name and value

2012-04-02 11:17:33
Hi,

On 4/2/2012 5:58 AM, David Carlisle wrote:
On 02/04/2012 10:51, Fabien Tillier wrote:
<xsl:value-of select="row[N101 = 5]"/>


<xsl:variable name="param" select="'N101'"/>

<xsl:value-of select="row[*[name()=$param] = 5]"/>

Or,

<xsl:key name="element-by-name" match="*" use="name()"/>

then

row[key('element-by-name',$param) = 5]

This may give the processor a bit more help.

Cheers,
Wendell

--
======================================================================
Wendell Piez                            
mailto:wapiez(_at_)mulberrytech(_dot_)com
Mulberry Technologies, Inc.                http://www.mulberrytech.com
17 West Jefferson Street                    Direct Phone: 301/315-9635
Suite 207                                          Phone: 301/315-9631
Rockville, MD  20850                                 Fax: 301/315-8285
----------------------------------------------------------------------
  Mulberry Technologies: A Consultancy Specializing in SGML and XML
======================================================================

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--