xsl-list
[Top] [All Lists]

RE: [xsl] FW: XPATH 'OR' Operator Syntax Question-SOLVED

2009-05-14 12:30:25
Mike and Mike, thanks for the feedback!

...[normalize-space(@Status_) = ('Here' or @Status_='Pending' or
@Status_='Accepted Offer') and...

-----Original Message-----
From: Michael Kay [mailto:mike(_at_)saxonica(_dot_)com] 
Sent: Thursday, May 14, 2009 11:22 AM
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: RE: [xsl] FW: XPATH 'OR' Operator Syntax Question


 
What you need looks more like

       status = 'Here' OR Status = 'Pending' OR Status = 'Accepted'



or in XPath 2.0,

status = ('Here', 'Pending', 'Accepted')

Regards,

Michael Kay
http://www.saxonica.com/
http://twitter.com/michaelhkay 


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


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