xsl-list
[Top] [All Lists]

Re: Comparing CDATA value and attribute

2004-11-24 03:10:51
 Good morning,

  i got it.

  You have to look "inside" the value, because of the xml file 
<value><![CDATA[1]]></value>

  I solved it this way:

  <xsl:if test="contains(parameter/value,@id)">
  ..

  It's not a real comparison, but it works for me.


contains only tests if the string value of @id is a substring of the
string value of the value element, not if they are equal. 

You presumably want

<xsl:if test="parameter/value= @id">

although noeither of tehse forms match the sample  input that you showed
before.

   xml:
   -------------------
   <parameter>
         <value><![CDATA[1]]></value>
   </parameter>

   <itable id="1">
   ..
   </itable>


If your input is of that form you need

<xsl:if test="parameter/value= itable/@id">

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

--~------------------------------------------------------------------
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>
--~--



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