Flashnux

GNU/Linux man pages

Livre :
Expressions régulières,
Syntaxe et mise en oeuvre :

ISBN : 978-2-7460-9712-4
EAN : 9782746097124
(Editions ENI)

GNU/Linux

CentOS 2.1AS

(Slurm)

XML::XQL::DOM(3pm)


XML::XQL::DOM

XML::XQL::DOM

NAME
SYNOPSIS
DESCRIPTION

NAME

XML::XQL::DOM − Adds XQL support to XML::DOM nodes

SYNOPSIS

 use XML::XQL;
 use XML::XQL::DOM;
 $parser = new XML::DOM::Parser;
 $doc = $parser->parsefile ("file.xml");
 # Return all elements with tagName=’title’ under the root element ’book’
 $query = new XML::XQL::Query (Expr => "book/title");
 @result = $query->solve ($doc);
 # Or (to save some typing)
 @result = XML::XQL::solve ("book/title", $doc);

 # Or (see XML::DOM::Node)
 @result = $doc->xql ("book/title");

DESCRIPTION

XML::XQL::DOM adds methods to the XML::DOM manpage nodes to support XQL queries on XML::DOM document structures.

See the XML::XQL manpage and the XML::XQL::Query manpage for more details. the XML::DOM::Node manpage describes the xql() method.



XML::XQL::DOM(3pm)