xsl-list
[Top] [All Lists]

Re: logical operators in *test*

2003-10-28 12:44:32
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(_at_)mulberrytech(_dot_)com
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



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