.\" -*- mode: troff; coding: utf-8 -*- .\" Automatically generated by Pod::Man v6.0.2 (Pod::Simple 3.45) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" \*(C` and \*(C' are quotes in nroff, nothing in troff, for use with C<>. .ie n \{\ . ds C` "" . ds C' "" 'br\} .el\{\ . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{\ . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .\" .\" Required to disable full justification in groff 1.23.0. .if n .ds AD l .\" ======================================================================== .\" .IX Title "XML::XPath::NodeSet 3" .TH XML::XPath::NodeSet 3 2025-12-14 "perl v5.42.0" "User Contributed Perl Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH NAME XML::XPath::NodeSet \- a list of XML document nodes .SH DESCRIPTION .IX Header "DESCRIPTION" An XML::XPath::NodeSet object contains an ordered list of nodes. The nodes each take the same format as described in XML::XPath::XMLParser. .SH SYNOPSIS .IX Header "SYNOPSIS" .Vb 9 \& my $results = $xp\->find(\*(Aq//someelement\*(Aq); \& if (!$results\->isa(\*(AqXML::XPath::NodeSet\*(Aq)) { \& print "Found $results\en"; \& exit; \& } \& foreach my $context ($results\->get_nodelist) { \& my $newresults = $xp\->find(\*(Aq./other/element\*(Aq, $context); \& ... \& } .Ve .SH API .IX Header "API" .SS \fBnew()\fP .IX Subsection "new()" You will almost never have to create a new NodeSet object, as it is all done for you by XPath. .SS \fBget_nodelist()\fP .IX Subsection "get_nodelist()" Returns a list of nodes. See XML::XPath::XMLParser for the format of the nodes. .SS \fBstring_value()\fP .IX Subsection "string_value()" Returns the string\-value of the first node in the list. See the XPath specification for what "string\-value" means. .SS \fBto_literal()\fP .IX Subsection "to_literal()" Returns the concatenation of all the string\-values of all the nodes in the list. .SS get_node($pos) .IX Subsection "get_node($pos)" Returns the node at \f(CW$pos\fR. The node position in XPath is based at 1, not 0. .SS \fBsize()\fP .IX Subsection "size()" Returns the number of nodes in the NodeSet. .SS \fBpop()\fP .IX Subsection "pop()" Equivalent to perl\*(Aqs pop function. .SS push(@nodes) .IX Subsection "push(@nodes)" Equivalent to perl\*(Aqs push function. .SS append($nodeset) .IX Subsection "append($nodeset)" Given a nodeset, appends the list of nodes in \f(CW$nodeset\fR to the end of the current list. .SS \fBshift()\fP .IX Subsection "shift()" Equivalent to perl\*(Aqs shift function. .SS unshift(@nodes) .IX Subsection "unshift(@nodes)" Equivalent to perl\*(Aqs unshift function. .SS prepend($nodeset) .IX Subsection "prepend($nodeset)" Given a nodeset, prepends the list of nodes in \f(CW$nodeset\fR to the front of the current list.