to the main page about the tutorial  THE XML REVOLUTION  -  TECHNOLOGIES FOR THE FUTURE WEB back up next

Abbreviations

Syntactic sugar: convenient notation for common situations

Normal syntax Abbreviation
child::   nothing   (so child is the default axis)
attribute::   @
/descendant-or-self::node()/   //
self::node()   .   (useful because location paths starting with / begin evaluation at the root)
parent::node()   ..

Example:

  .//@href

selects all href attributes in descendants of the context node.


Furthermore, the coercion rules often allow compact notation, e.g.
  foo[3]

refers to the third foo child element of the context node (because 3 is coerced to position()=3).

back COPYRIGHT © 2000-2003 ANDERS MØLLER & MICHAEL I. SCHWARTZBACH next