xml/xpath.bi

Notice

This submodule is not complete and will result in a compile error if included.

Summary
xml/xpath.biThis submodule is not complete and will result in a compile error if included.
LicenseCopyright © 2007-2012, FreeBASIC Extended Library Development Group
ext.xml
Types
XMLNodeListA <ext.List> of <ext.xml.node>
Functions
xpathXPath uses path expressions to select nodes or node-sets in an XML document.

License

Copyright © 2007-2012, FreeBASIC Extended Library Development Group

Distributed under the FreeBASIC Extended Library Group license.  See accompanying file LICENSE.txt or copy at http://code.google.com/p/fb-extended-lib/wiki/License

ext.xml

Summary
Types
XMLNodeListA <ext.List> of <ext.xml.node>
Functions
xpathXPath uses path expressions to select nodes or node-sets in an XML document.

Types

XMLNodeList

type XMLNodeList as fbExt_List(((node)))

A <ext.List> of <ext.xml.node>

Functions

xpath

declare function xpath(byval DOM as xml.tree ptr,
byref xpathstr as string) as XMLNodeList ptr

XPath uses path expressions to select nodes or node-sets in an XML document.  The node is selected by following a path or steps.  For Help with XPath syntax see: http://www.w3schools.com/xpath/xpath_syntax.asp

Parameters

DOM<ext.xml.tree> pointer to pull nodes from.
xpathstrstring containing the XPath “code” to use.

Returns

XMLNodeList of matching nodes.

type XMLNodeList as fbExt_List(((node)))
A ext.List of ext.xml.node
declare function xpath(byval DOM as xml.tree ptr,
byref xpathstr as string) as XMLNodeList ptr
XPath uses path expressions to select nodes or node-sets in an XML document.