Re: [xsl] logical operators in *test*

Subject: Re: [xsl] logical operators in *test*
From: Wendell Piez <wapiez@xxxxxxxxxxxxxxxx>
Date: Tue, 28 Oct 2003 14:44:32 -0500
Hi Aananth,

At 01:30 PM 10/28/2003, you wrote:
how do we use and,or etc with *test="" *statements?

Much in the way as one does in other programming languages, or for that matter in natural languages:


<xsl:template match="Signature">
  <xsl:if test="fname = 'aananth' and lname='solaiyappan'">
    <!-- ... do your thing ... -->
  </xsl:if>
</xsl:template>

...unless I misunderstand the question.

The operators involved are "and" and "or". There's also a function "not()", which takes a Boolean as its argument, and turns it upside down.

Cheers,
Wendell


====================================================================== Wendell Piez mailto:wapiez@xxxxxxxxxxxxxxxx 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



Current Thread