Re: [xsl] Testing if an attribute name is in a list of names

Subject: Re: [xsl] Testing if an attribute name is in a list of names
From: "Aron Bock" <aronbock@xxxxxxxxxxx>
Date: Thu, 19 May 2005 13:47:09 +0000
Paul,


That's getting closer to what I want, at least in terms of neatness.
I'm just wondering if we can get rid of the nested for-each.


For what it's worth, the following does not have explicit nested loops, but that's just a matter of syntax.


<?xml version="1.0" encoding="iso8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
<xsl:output method="text"/>


<xsl:variable name="meta-col-names" select="/data/outcomes/column/@attName"/>

   <xsl:template match="/">
       <xsl:apply-templates select="data/rows/row"/>
   </xsl:template>

   <xsl:template match="row">
       <xsl:apply-templates select="@*[name() = $meta-col-names]"/>
       <xsl:text>&#xa;</xsl:text>
   </xsl:template>

   <xsl:template match="row/@*">
       <xsl:value-of select="."/>
   </xsl:template>

</xsl:stylesheet>

_________________________________________________________________
Dont just search. Find. Check out the new MSN Search! http://search.msn.click-url.com/go/onm00200636ave/direct/01/


Current Thread