Understanding Context : context « XPath « XML Tutorial

XML Tutorial
1. Introduction
2. Namespace
3. XML Schema
4. XPath
5. XSLT stylesheet
Java
XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
XML Tutorial » XPath » context 
4. 2. 1. Understanding Context
In XPath, the context indicates the location of the node where a processor is currently situated. 
That node is called the context node. 
The context also includes a context position and a context size. 
Consider the following XML document, book.xml: 

<Book>
    <Chapter number="1">This is the first chapter</Chapter>
    <Chapter number="2">This is the second chapter</Chapter>
    <Chapter number="3">This is the third chapter</Chapter>
    <Chapter number="4">This is the fourth chapter</Chapter>
    <Chapter number="5">This is the fifth chapter</Chapter>
</Book> 

Suppose the context node is the node that represents the Chapter element node for the second chapter. 
We can use the position() and last() functions to show the position of the context node and the context size.
4. 2. context
4. 2. 1. Understanding Context
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.