This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: not() function not working



I changed the script a little bit and achieved the desired result. I think I
had quite a few things wrong the first time around.

<xsl:template match="/">
  <xsl:apply-templates select="*"/>
</xsl:template>

<xsl:template match="parent">
  <xsl:value-of select="child1[not(@type='one')]"/>
</xsl:template>

Thanks,
--KH


-----Original Message-----
From: owner-xsl-list@lists.mulberrytech.com
[mailto:owner-xsl-list@lists.mulberrytech.com]On Behalf Of Kartheek
Hirode
Sent: Monday, August 06, 2001 4:59 PM
To: xsl-list@lists.mulberrytech.com
Subject: [xsl] not() function not working


Hello,
I'm trying to selectively pick nodes using the not() function. I seem to be
missing something because the output does not reflect the not() exclusion. I
appreciate your attention.

XSL script is:
<xsl:template match="/">
	<xsl:apply-templates select="*"/>
</xsl:template>

<xsl:template match="child1[not(@type='one')]">
	<xsl:value-of select="."/>
</xsl:template>


XML data is:
<parent>
  <child1 type='one'>
     <child2 name = 'a'>
        <valueOf>aaa</valueOf>
     </child2>
     <child2 name = 'b'>
        <valueOf>bbb</valueOf>
     </child2>
  </child1>
  <child1 type='two'>
     <child2 name = 'c'>
	  <valueOf>ccc</valueOf>
	  <valueOf>ddd</valueOf>
     </child2>
  </child1>
</parent>

The output is:
  aaa
  bbb

  ccc
  ddd


Whereas, I am trying to get this output:
  ccc
  ddd

Much appreciated,
--KH


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]