Sophie

Sophie

distrib > Mageia > 7 > x86_64 > by-pkgid > b3bdfe6d859a3d6920ff2c44b38e9a6f > files > 231

saxon-manual-9.4.0.9-2.mga7.noarch.rpm

<?xml version="1.0" encoding="iso-8859-1"?>
<?xml-stylesheet href="../make-menu.xsl" type="text/xsl"?><html>
   <head>
      <this-is section="expressions" page="filter" subpage=""/>
      <!--
           Generated at 2011-12-09T20:47:22.916Z--><title>Saxonica: XSLT and XQuery Processing: Filter expressions</title>
      <meta name="coverage" content="Worldwide"/>
      <meta name="copyright" content="Copyright Saxonica Ltd"/>
      <meta name="title" content="Saxonica: XSLT and XQuery Processing: Filter expressions"/>
      <meta name="robots" content="noindex,nofollow"/>
      <link rel="stylesheet" href="../saxondocs.css" type="text/css"/>
   </head>
   <body class="main">
      <h1>Filter expressions</h1>
      <p>The notation <code>E[P]</code> is used to select items from the sequence obtained by evaluating
<code>E</code>. If the predicate <code>P</code> is numeric, the predicate selects an item if its
position (counting from 1) is equal to <code>P</code>; otherwise, the <i>effective boolean value</i>
of <code>P</code> determines whether an item is selected or not. The effective boolean value of a sequence
is false if the sequence is empty, or if it contains a single item that is one of: the boolean value
false, the zero-length string, or a numeric zero or NaN value. If the first item of the sequence is a node, or
if the sequence is a singleton boolean, number or string other than those listed above, the effective
boolean value is true. In other cases (for example, if the sequence contains two booleans or a date),
evaluating the effective boolean value causes an error.</p>
      <p>In XPath 2.0, <code>E</code> may be any sequence, it is not restricted to a node sequence. Within
the predicate, the expression <code>.</code> (dot) refers to the context item, that is, the item
currently being tested. The XPath 1.0 concept of context node has thus been generalized, for example
<code>.</code> can refer to a string or a number.</p>
      <p>Generally the order of items in the result preserves the order of items in <code>E</code>. As a 
special case, however, if <code>E</code> is a step using a reverse axis (e.g. preceding-sibling), the
position of nodes for the purpose of evaluating the predicate is in reverse document order, but the
result of the filter expression is in forwards document order.</p>
      <table width="100%">
         <tr>
            <td>
               <p align="right"><a class="nav" href="path.xml">Next</a></p>
            </td>
         </tr>
      </table>
   </body>
</html>