December 2003
Intermediate to advanced
384 pages
7h 10m
English
IN THIS CHAPTER
You can use XPath logical operators to produce Boolean true/false results. These are the logical operators:
!= means “is not equal to.”
< means “is less-than” (use < in XML documents).
<= means “is less-than or equal to” (use <= in XML documents).
= means “is equal to” (C, C++, Java, and JavaScript programmers take note—this operator is one = sign, not two).
> means “is greater-than.”
>= means “is greater-than or equal to.”
And as we saw in Chapter 3, you can also use the and ...
Read now
Unlock full access