Subject: RE: Comparing content
From: Ben Robb <Ben@xxxxxxxxxx>
Date: Mon, 13 Sep 1999 16:04:24 +0100
|
Try something like:
**XML**
<DOCUMENT>
<TAG1>something</TAG1>
<TAG2>something</TAG2>
<TAG3>
<TAG4>something</TAG4>
</TAG3>
</DOCUMENT>
**XSL**
<xsl:if test="DOCUMENT[TAG1 = TAG2]">
<!-- do something -->
</xsl:if>
or
<xsl:if test="DOCUMENT[TAG1 = TAG3/TAG4]">
<!-- do something -->
</xsl:if>
Rgs,
Ben Robb
cScape Ltd
> -----Original Message-----
> From: Peter-Paul Koch [mailto:ppk@xxxxxxxxxx]
> Sent: 13 September 1999 15:23
> To: xsl-list@xxxxxxxxxxxxxxxx
> Subject: Comparing content
>
>
>
> I received some help after my earlier mail, which has allowed
> me to boil my
> problem down to a simpler question:
>
> Is it AT ALL possible to compare the content of two elements
> in XSL? In
> other words, can I say
>
> "if content of element1 = content of element2" ?
>
> If this is possbile, how do I do this?
>
> Thanks in advance,
>
> ppk
>
>
> XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
>
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|