
- XPath Tutorial
- XPath - Home
- XPath - Overview
- XPath - Expression
- XPath - Nodes
- XPath - Absolute Path
- XPath - Relative Path
- XPath - Axes
- XPath - Operators
- XPath - Wildcard
- XPath - Predicate
- XPath Useful Resources
- XPath - Quick Guide
- XPath - Useful Resources
- XPath - Discussion
XPath - Boolean Operators
XPath defines the following Boolean operators to be used with the XPath expressions.
S.No. | Operator & Description |
---|---|
1 | and both conditions to be satisfied |
2 | or any one of the condition to be satisfied |
3 | not() function to check condition not to be satisfied. |
Example
This example creates a table of <student> element with its attribute roll no and its child <firstname>,<lastname><nickname> and <marks> by iterating over each student. It checks rollno to be either 393 or 493 and then prints the student(s) details.
students.xml
<?xml version = "1.0"?> <?xml-stylesheet type = "text/xsl" href = "students.xsl"?> <class> <student rollno = "393"> <firstname>Dinkar</firstname> <lastname>Kad</lastname> <nickname>Dinkar</nickname> <marks>85</marks> </student> <student rollno = "493"> <firstname>Vaneet</firstname> <lastname>Gupta</lastname> <nickname>Vinni</nickname> <marks>95</marks> </student> <student rollno = "593"> <firstname>Jasvir</firstname> <lastname>Singh</lastname> <nickname>Jazz</nickname> <marks>90</marks> </student> </class>
students.xsl
<?xml version = "1.0" encoding = "UTF-8"?> <xsl:stylesheet version = "1.0" xmlns:xsl = "http://www.w3.org/1999/XSL/Transform"> <xsl:template match = "/"> <html> <body> <h2>Students</h2> <table border = "1"> <tr bgcolor = "#9acd32"> <th>Roll No</th> <th>First Name</th> <th>Last Name</th> <th>Nick Name</th> <th>Marks</th> </tr> <xsl:for-each select = "class/student[(@rollno = 393) or ((@rollno = 493))]"> <tr> <td><xsl:value-of select = "@rollno"/></td> <td><xsl:value-of select = "firstname"/></td> <td><xsl:value-of select = "lastname"/></td> <td><xsl:value-of select = "nickname"/></td> <td><xsl:value-of select = "marks"/></td> </tr> </xsl:for-each> </table> </body> </html> </xsl:template> </xsl:stylesheet>
Verify the output

xpath_operators.htm
Advertisements